📄 form1.designer.cs
字号:
namespace PrimitiveDataTypes
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.quit = new System.Windows.Forms.Button();
this.value = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.type = new System.Windows.Forms.ListBox();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// quit
//
this.quit.Location = new System.Drawing.Point(193, 195);
this.quit.Name = "quit";
this.quit.TabIndex = 6;
this.quit.Text = "Quit";
this.quit.Click += new System.EventHandler(this.quit_Click);
//
// value
//
this.value.Enabled = false;
this.value.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.value.Location = new System.Drawing.Point(168, 70);
this.value.Name = "value";
this.value.TabIndex = 7;
//
// label3
//
this.label3.Location = new System.Drawing.Point(168, 40);
this.label3.Name = "label3";
this.label3.TabIndex = 8;
this.label3.Text = "Sample value";
//
// type
//
this.type.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.type.FormattingEnabled = true;
this.type.ItemHeight = 16;
this.type.Items.AddRange(new object[] {
"int",
"long",
"float",
"double",
"decimal",
"string",
"char",
"bool"});
this.type.Location = new System.Drawing.Point(22, 70);
this.type.Name = "type";
this.type.Size = new System.Drawing.Size(120, 148);
this.type.TabIndex = 9;
this.type.SelectedIndexChanged += new System.EventHandler(this.type_SelectedIndexChanged);
//
// label2
//
this.label2.Location = new System.Drawing.Point(22, 40);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(120, 16);
this.label2.TabIndex = 10;
this.label2.Text = "Choose a data type";
//
// label1
//
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(47, 10);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(200, 23);
this.label1.TabIndex = 11;
this.label1.Text = "Primitive Data Types";
//
// Form1
//
this.ClientSize = new System.Drawing.Size(292, 237);
this.Controls.Add(this.label1);
this.Controls.Add(this.label2);
this.Controls.Add(this.type);
this.Controls.Add(this.label3);
this.Controls.Add(this.value);
this.Controls.Add(this.quit);
this.Name = "Form1";
this.Text = "Data Test";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button quit;
private System.Windows.Forms.TextBox value;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ListBox type;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -