📄 8.2.txt
字号:
Listing 8.2 Defining Control Properties Using a Variety of Data Types
private void InitializeComponent()
{
this.mylabel = new System.Windows.Forms.Label();
this.SuspendLayout();
// label properties
this.mylabel.BackColor = System.Drawing.SystemColors.ControlDark;
this.mylabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.mylabel.Font = new System.Drawing.Font(“Team MT”, 24F,
System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.mylabel.ForeColor = System.Drawing.Color.FromArgb(((System.Byte)(0)),
((System.Byte)(0)), ((System.Byte)(192)));
this.mylabel.Location = new System.Drawing.Point(24, 64);
this.mylabel.Name = “mylabel”;
this.mylabel.Size = new System.Drawing.Size(232, 120);
this.mylabel.TabIndex = 0;
this.mylabel.Text = “This is a label control”;
this.mylabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
// form properties...
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -