添加项目文件。

This commit is contained in:
xyy
2026-01-16 20:53:33 +08:00
parent a75be0a011
commit a254118c27
92 changed files with 36090 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
namespace _定制款.
{
partial class TreeComboBox
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.comboBox = new System.Windows.Forms.ComboBox();
this.treeView = new System.Windows.Forms.TreeView();
this.btnAdd = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// comboBox
//
this.comboBox.FormattingEnabled = true;
this.comboBox.Location = new System.Drawing.Point(0, 0);
this.comboBox.Name = "comboBox";
this.comboBox.Size = new System.Drawing.Size(150, 20);
this.comboBox.TabIndex = 0;
//
// treeView
//
this.treeView.Location = new System.Drawing.Point(0, 25);
this.treeView.Name = "treeView";
this.treeView.Size = new System.Drawing.Size(150, 100);
this.treeView.TabIndex = 1;
this.treeView.Visible = false;
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(160, 0);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(75, 23);
this.btnAdd.TabIndex = 2;
this.btnAdd.Text = "新增";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnRemove
//
this.btnRemove.Location = new System.Drawing.Point(160, 26);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(75, 23);
this.btnRemove.TabIndex = 3;
this.btnRemove.Text = "删除";
this.btnRemove.UseVisualStyleBackColor = true;
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
//
// TreeComboBox
//
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.treeView);
this.Controls.Add(this.comboBox);
this.Name = "TreeComboBox";
this.Size = new System.Drawing.Size(240, 130);
this.ResumeLayout(false);
}
private System.Windows.Forms.ComboBox comboBox;
private System.Windows.Forms.TreeView treeView;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnRemove;
}
}