📄 formaddfunctionguide.designer.cs
字号:
namespace ProgramCalculator
{
partial class FormAddFunctionGuide
{
/// <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.label1 = new System.Windows.Forms.Label();
this.textBoxFunctionName = new System.Windows.Forms.TextBox();
this.buttonOk = new System.Windows.Forms.Button();
this.buttonCancel = new System.Windows.Forms.Button();
this.labelInfo = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textBoxExplainInfo = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(19, 21);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 0;
this.label1.Text = "函数名称";
//
// textBoxFunctionName
//
this.textBoxFunctionName.Location = new System.Drawing.Point(21, 36);
this.textBoxFunctionName.Name = "textBoxFunctionName";
this.textBoxFunctionName.Size = new System.Drawing.Size(401, 21);
this.textBoxFunctionName.TabIndex = 1;
//
// buttonOk
//
this.buttonOk.Location = new System.Drawing.Point(329, 174);
this.buttonOk.Name = "buttonOk";
this.buttonOk.Size = new System.Drawing.Size(108, 31);
this.buttonOk.TabIndex = 3;
this.buttonOk.Text = "确定";
this.buttonOk.UseVisualStyleBackColor = true;
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
//
// buttonCancel
//
this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.buttonCancel.Location = new System.Drawing.Point(232, 174);
this.buttonCancel.Name = "buttonCancel";
this.buttonCancel.Size = new System.Drawing.Size(91, 31);
this.buttonCancel.TabIndex = 3;
this.buttonCancel.Text = "取消";
this.buttonCancel.UseVisualStyleBackColor = true;
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
//
// labelInfo
//
this.labelInfo.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
this.labelInfo.Location = new System.Drawing.Point(101, 9);
this.labelInfo.Name = "labelInfo";
this.labelInfo.Size = new System.Drawing.Size(336, 24);
this.labelInfo.TabIndex = 4;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(21, 65);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(149, 12);
this.label2.TabIndex = 5;
this.label2.Text = "用于说明该函数的简短信息";
//
// textBoxExplainInfo
//
this.textBoxExplainInfo.Location = new System.Drawing.Point(23, 80);
this.textBoxExplainInfo.Multiline = true;
this.textBoxExplainInfo.Name = "textBoxExplainInfo";
this.textBoxExplainInfo.Size = new System.Drawing.Size(399, 78);
this.textBoxExplainInfo.TabIndex = 6;
//
// FormAddFunctionGuide
//
this.AcceptButton = this.buttonOk;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.buttonCancel;
this.ClientSize = new System.Drawing.Size(449, 214);
this.Controls.Add(this.textBoxExplainInfo);
this.Controls.Add(this.label2);
this.Controls.Add(this.labelInfo);
this.Controls.Add(this.buttonCancel);
this.Controls.Add(this.buttonOk);
this.Controls.Add(this.textBoxFunctionName);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FormAddFunctionGuide";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "添加函数";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxFunctionName;
private System.Windows.Forms.Button buttonOk;
private System.Windows.Forms.Button buttonCancel;
private System.Windows.Forms.Label labelInfo;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxExplainInfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -