📄 mainform.designer.cs
字号:
namespace UsingStringFormat
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.m_lblHAlign = new System.Windows.Forms.Label();
this.m_lblVAlign = new System.Windows.Forms.Label();
this.m_cmbHAlign = new System.Windows.Forms.ComboBox();
this.m_cmbVAlign = new System.Windows.Forms.ComboBox();
this.m_chkNoClip = new System.Windows.Forms.CheckBox();
this.m_chkNoWrap = new System.Windows.Forms.CheckBox();
this.SuspendLayout();
//
// m_lblHAlign
//
this.m_lblHAlign.Location = new System.Drawing.Point(4, 4);
this.m_lblHAlign.Name = "m_lblHAlign";
this.m_lblHAlign.Size = new System.Drawing.Size(128, 20);
this.m_lblHAlign.Text = "Horizontal Alignment:";
//
// m_lblVAlign
//
this.m_lblVAlign.Location = new System.Drawing.Point(4, 31);
this.m_lblVAlign.Name = "m_lblVAlign";
this.m_lblVAlign.Size = new System.Drawing.Size(128, 20);
this.m_lblVAlign.Text = "Vertical Alignment:";
//
// m_cmbHAlign
//
this.m_cmbHAlign.Items.Add("Near");
this.m_cmbHAlign.Items.Add("Center");
this.m_cmbHAlign.Items.Add("Far");
this.m_cmbHAlign.Location = new System.Drawing.Point(139, 1);
this.m_cmbHAlign.Name = "m_cmbHAlign";
this.m_cmbHAlign.Size = new System.Drawing.Size(98, 22);
this.m_cmbHAlign.TabIndex = 2;
this.m_cmbHAlign.SelectedIndexChanged += new System.EventHandler(this.m_onNeedRedraw);
//
// m_cmbVAlign
//
this.m_cmbVAlign.Items.Add("Near");
this.m_cmbVAlign.Items.Add("Center");
this.m_cmbVAlign.Items.Add("Far");
this.m_cmbVAlign.Location = new System.Drawing.Point(139, 29);
this.m_cmbVAlign.Name = "m_cmbVAlign";
this.m_cmbVAlign.Size = new System.Drawing.Size(98, 22);
this.m_cmbVAlign.TabIndex = 2;
this.m_cmbVAlign.SelectedIndexChanged += new System.EventHandler(this.m_onNeedRedraw);
//
// m_chkNoClip
//
this.m_chkNoClip.Location = new System.Drawing.Point(4, 57);
this.m_chkNoClip.Name = "m_chkNoClip";
this.m_chkNoClip.Size = new System.Drawing.Size(100, 20);
this.m_chkNoClip.TabIndex = 3;
this.m_chkNoClip.Text = "No Clip";
this.m_chkNoClip.CheckStateChanged += new System.EventHandler(this.m_onNeedRedraw);
//
// m_chkNoWrap
//
this.m_chkNoWrap.Location = new System.Drawing.Point(110, 57);
this.m_chkNoWrap.Name = "m_chkNoWrap";
this.m_chkNoWrap.Size = new System.Drawing.Size(100, 20);
this.m_chkNoWrap.TabIndex = 3;
this.m_chkNoWrap.Text = "No Wrap";
this.m_chkNoWrap.CheckStateChanged += new System.EventHandler(this.m_onNeedRedraw);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.m_chkNoWrap);
this.Controls.Add(this.m_chkNoClip);
this.Controls.Add(this.m_cmbVAlign);
this.Controls.Add(this.m_cmbHAlign);
this.Controls.Add(this.m_lblVAlign);
this.Controls.Add(this.m_lblHAlign);
this.Menu = this.mainMenu1;
this.Name = "MainForm";
this.Text = "Formating String";
this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label m_lblHAlign;
private System.Windows.Forms.Label m_lblVAlign;
private System.Windows.Forms.ComboBox m_cmbHAlign;
private System.Windows.Forms.ComboBox m_cmbVAlign;
private System.Windows.Forms.CheckBox m_chkNoClip;
private System.Windows.Forms.CheckBox m_chkNoWrap;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -