📄 form_tree.designer.cs
字号:
namespace BinaryTree
{
partial class Form_Tree
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Tree));
this.btn_Rdecrese = new System.Windows.Forms.Button();
this.btn_Rincrese = new System.Windows.Forms.Button();
this.btn_DisRight = new System.Windows.Forms.Button();
this.btn_DisLeft = new System.Windows.Forms.Button();
this.btn_DisDown = new System.Windows.Forms.Button();
this.btn_DisUp = new System.Windows.Forms.Button();
this.btn_desTree = new System.Windows.Forms.Button();
this.textBox_Key = new System.Windows.Forms.TextBox();
this.btn_addNode = new System.Windows.Forms.Button();
this.btn_delNode = new System.Windows.Forms.Button();
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
this.btn_fontColor = new System.Windows.Forms.Button();
this.comboBox_color = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// btn_Rdecrese
//
this.btn_Rdecrese.Image = ((System.Drawing.Image)(resources.GetObject("btn_Rdecrese.Image")));
this.btn_Rdecrese.Location = new System.Drawing.Point(192, 499);
this.btn_Rdecrese.Name = "btn_Rdecrese";
this.btn_Rdecrese.Size = new System.Drawing.Size(25, 25);
this.btn_Rdecrese.TabIndex = 9;
this.btn_Rdecrese.Text = "-";
this.btn_Rdecrese.UseVisualStyleBackColor = true;
this.btn_Rdecrese.Click += new System.EventHandler(this.btn_Rdecrese_Click);
//
// btn_Rincrese
//
this.btn_Rincrese.Image = ((System.Drawing.Image)(resources.GetObject("btn_Rincrese.Image")));
this.btn_Rincrese.Location = new System.Drawing.Point(192, 431);
this.btn_Rincrese.Name = "btn_Rincrese";
this.btn_Rincrese.Size = new System.Drawing.Size(25, 25);
this.btn_Rincrese.TabIndex = 10;
this.btn_Rincrese.Text = "+";
this.btn_Rincrese.UseVisualStyleBackColor = true;
this.btn_Rincrese.Click += new System.EventHandler(this.btn_Rincrese_Click);
//
// btn_DisRight
//
this.btn_DisRight.Image = ((System.Drawing.Image)(resources.GetObject("btn_DisRight.Image")));
this.btn_DisRight.Location = new System.Drawing.Point(129, 464);
this.btn_DisRight.Name = "btn_DisRight";
this.btn_DisRight.Size = new System.Drawing.Size(25, 25);
this.btn_DisRight.TabIndex = 8;
this.btn_DisRight.UseVisualStyleBackColor = true;
this.btn_DisRight.Click += new System.EventHandler(this.btn_DisRight_Click);
//
// btn_DisLeft
//
this.btn_DisLeft.Image = ((System.Drawing.Image)(resources.GetObject("btn_DisLeft.Image")));
this.btn_DisLeft.Location = new System.Drawing.Point(50, 464);
this.btn_DisLeft.Name = "btn_DisLeft";
this.btn_DisLeft.Size = new System.Drawing.Size(25, 25);
this.btn_DisLeft.TabIndex = 7;
this.btn_DisLeft.UseVisualStyleBackColor = true;
this.btn_DisLeft.Click += new System.EventHandler(this.btn_DisLeft_Click);
//
// btn_DisDown
//
this.btn_DisDown.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.btn_DisDown.Image = ((System.Drawing.Image)(resources.GetObject("btn_DisDown.Image")));
this.btn_DisDown.Location = new System.Drawing.Point(88, 499);
this.btn_DisDown.Name = "btn_DisDown";
this.btn_DisDown.Size = new System.Drawing.Size(25, 25);
this.btn_DisDown.TabIndex = 6;
this.btn_DisDown.UseVisualStyleBackColor = true;
this.btn_DisDown.Click += new System.EventHandler(this.btn_DisDown_Click);
//
// btn_DisUp
//
this.btn_DisUp.Image = ((System.Drawing.Image)(resources.GetObject("btn_DisUp.Image")));
this.btn_DisUp.Location = new System.Drawing.Point(88, 431);
this.btn_DisUp.Name = "btn_DisUp";
this.btn_DisUp.Size = new System.Drawing.Size(25, 25);
this.btn_DisUp.TabIndex = 5;
this.btn_DisUp.TabStop = false;
this.btn_DisUp.UseVisualStyleBackColor = true;
this.btn_DisUp.Click += new System.EventHandler(this.btn_DisUp_Click);
//
// btn_desTree
//
this.btn_desTree.Location = new System.Drawing.Point(386, 502);
this.btn_desTree.Name = "btn_desTree";
this.btn_desTree.Size = new System.Drawing.Size(75, 23);
this.btn_desTree.TabIndex = 11;
this.btn_desTree.Text = "清空树";
this.btn_desTree.UseVisualStyleBackColor = true;
this.btn_desTree.Click += new System.EventHandler(this.btn_desTree_Click);
//
// textBox_Key
//
this.textBox_Key.Location = new System.Drawing.Point(386, 431);
this.textBox_Key.Name = "textBox_Key";
this.textBox_Key.Size = new System.Drawing.Size(42, 21);
this.textBox_Key.TabIndex = 12;
//
// btn_addNode
//
this.btn_addNode.Location = new System.Drawing.Point(478, 431);
this.btn_addNode.Name = "btn_addNode";
this.btn_addNode.Size = new System.Drawing.Size(75, 23);
this.btn_addNode.TabIndex = 13;
this.btn_addNode.Text = "增加节点";
this.btn_addNode.UseVisualStyleBackColor = true;
this.btn_addNode.Click += new System.EventHandler(this.btn_addNode_Click);
//
// btn_delNode
//
this.btn_delNode.Location = new System.Drawing.Point(478, 466);
this.btn_delNode.Name = "btn_delNode";
this.btn_delNode.Size = new System.Drawing.Size(75, 23);
this.btn_delNode.TabIndex = 14;
this.btn_delNode.Text = "删除节点";
this.btn_delNode.UseVisualStyleBackColor = true;
this.btn_delNode.Click += new System.EventHandler(this.btn_delNode_Click);
//
// btn_fontColor
//
this.btn_fontColor.Location = new System.Drawing.Point(269, 487);
this.btn_fontColor.Name = "btn_fontColor";
this.btn_fontColor.Size = new System.Drawing.Size(75, 23);
this.btn_fontColor.TabIndex = 15;
this.btn_fontColor.Text = "设置颜色";
this.btn_fontColor.UseVisualStyleBackColor = true;
this.btn_fontColor.Click += new System.EventHandler(this.btn_fontColor_Click);
//
// comboBox_color
//
this.comboBox_color.FormattingEnabled = true;
this.comboBox_color.ImeMode = System.Windows.Forms.ImeMode.On;
this.comboBox_color.Items.AddRange(new object[] {
"字体颜色",
"圆圈颜色",
"背景颜色"});
this.comboBox_color.Location = new System.Drawing.Point(269, 445);
this.comboBox_color.Name = "comboBox_color";
this.comboBox_color.Size = new System.Drawing.Size(75, 20);
this.comboBox_color.TabIndex = 16;
this.comboBox_color.TabStop = false;
//
// Form_Tree
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LightSteelBlue;
this.ClientSize = new System.Drawing.Size(592, 566);
this.Controls.Add(this.comboBox_color);
this.Controls.Add(this.btn_fontColor);
this.Controls.Add(this.btn_delNode);
this.Controls.Add(this.btn_addNode);
this.Controls.Add(this.textBox_Key);
this.Controls.Add(this.btn_desTree);
this.Controls.Add(this.btn_Rdecrese);
this.Controls.Add(this.btn_Rincrese);
this.Controls.Add(this.btn_DisRight);
this.Controls.Add(this.btn_DisLeft);
this.Controls.Add(this.btn_DisDown);
this.Controls.Add(this.btn_DisUp);
this.Name = "Form_Tree";
this.Text = "Form_Tree";
this.Shown += new System.EventHandler(this.Form_Tree_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btn_Rdecrese;
private System.Windows.Forms.Button btn_Rincrese;
private System.Windows.Forms.Button btn_DisRight;
private System.Windows.Forms.Button btn_DisLeft;
private System.Windows.Forms.Button btn_DisDown;
private System.Windows.Forms.Button btn_DisUp;
private System.Windows.Forms.Button btn_desTree;
private System.Windows.Forms.TextBox textBox_Key;
private System.Windows.Forms.Button btn_addNode;
private System.Windows.Forms.Button btn_delNode;
private System.Windows.Forms.ColorDialog colorDialog1;
private System.Windows.Forms.Button btn_fontColor;
private System.Windows.Forms.ComboBox comboBox_color;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -