📄 mainform.designer.cs
字号:
namespace Experiment01
{
partial class MainForm
{
/// <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()
{
this.checkedListBox = new System.Windows.Forms.CheckedListBox();
this.enterButton = new System.Windows.Forms.Button();
this.resultTextBox = new System.Windows.Forms.TextBox();
this.resultTipLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// checkedListBox
//
this.checkedListBox.CheckOnClick = true;
this.checkedListBox.FormattingEnabled = true;
this.checkedListBox.Items.AddRange(new object[] {
"00.不会飞",
"01.吃肉",
"02.会飞",
"03.会下蛋",
"04.会游泳",
"05.善飞",
"06.身上有暗斑点",
"07.身上有黑色条纹",
"08.是斑马",
"09.是哺乳动物",
"10.是长颈鹿",
"11.是虎",
"12.是黄褐色",
"13.是金钱豹",
"14.是嚼反刍动物",
"15.是鸟",
"16.是企鹅",
"17.是肉食动物",
"18.是鸵鸟",
"19.是信天翁",
"20.是有碲类动物",
"21.眼盯前方",
"22.有长脖子",
"23.有长腿",
"24.有碲",
"25.有黑白二色",
"26.有毛发",
"27.有奶",
"28.有犬齿",
"29.有羽毛",
"30.有爪"});
this.checkedListBox.Location = new System.Drawing.Point(14, 12);
this.checkedListBox.Name = "checkedListBox";
this.checkedListBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.checkedListBox.Size = new System.Drawing.Size(142, 500);
this.checkedListBox.Sorted = true;
this.checkedListBox.TabIndex = 8;
this.checkedListBox.SelectedIndexChanged += new System.EventHandler(this.checkedListBox_SelectedIndexChanged);
//
// enterButton
//
this.enterButton.Location = new System.Drawing.Point(12, 529);
this.enterButton.Name = "enterButton";
this.enterButton.Size = new System.Drawing.Size(144, 23);
this.enterButton.TabIndex = 9;
this.enterButton.Text = "看看";
this.enterButton.UseVisualStyleBackColor = true;
this.enterButton.Click += new System.EventHandler(this.enterButton_Click);
//
// resultTextBox
//
this.resultTextBox.Location = new System.Drawing.Point(12, 576);
this.resultTextBox.Name = "resultTextBox";
this.resultTextBox.Size = new System.Drawing.Size(144, 21);
this.resultTextBox.TabIndex = 13;
this.resultTextBox.TextChanged += new System.EventHandler(this.resultTextBox_TextChanged);
//
// resultTipLabel
//
this.resultTipLabel.AutoSize = true;
this.resultTipLabel.Location = new System.Drawing.Point(12, 561);
this.resultTipLabel.Name = "resultTipLabel";
this.resultTipLabel.Size = new System.Drawing.Size(65, 12);
this.resultTipLabel.TabIndex = 14;
this.resultTipLabel.Text = "识别结果:";
this.resultTipLabel.Click += new System.EventHandler(this.resultTipLabel_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(170, 609);
this.Controls.Add(this.resultTipLabel);
this.Controls.Add(this.resultTextBox);
this.Controls.Add(this.enterButton);
this.Controls.Add(this.checkedListBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "MainForm";
this.Opacity = 0.8;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "无班界动物识别系统 1.0";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckedListBox checkedListBox;
private System.Windows.Forms.Button enterButton;
private System.Windows.Forms.TextBox resultTextBox;
private System.Windows.Forms.Label resultTipLabel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -