📄 optiondlg.designer.cs
字号:
namespace Skyiv.Ben.PushBoxStd.Window
{
partial class OptionDlg
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mnuMain;
/// <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.mnuMain = new System.Windows.Forms.MainMenu();
this.miOk = new System.Windows.Forms.MenuItem();
this.miCancel = new System.Windows.Forms.MenuItem();
this.chkSave = new System.Windows.Forms.CheckBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.tbxStepDelay = new System.Windows.Forms.TextBox();
this.tbxReplayDelay = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// mnuMain
//
this.mnuMain.MenuItems.Add(this.miOk);
this.mnuMain.MenuItems.Add(this.miCancel);
//
// miOk
//
this.miOk.Text = "确定";
this.miOk.Click += new System.EventHandler(this.miOk_Click);
//
// miCancel
//
this.miCancel.Text = "取消";
this.miCancel.Click += new System.EventHandler(this.miCancel_Click);
//
// chkSave
//
this.chkSave.Location = new System.Drawing.Point(5, 101);
this.chkSave.Name = "chkSave";
this.chkSave.Size = new System.Drawing.Size(152, 22);
this.chkSave.TabIndex = 2;
this.chkSave.Text = "保护现场";
//
// label1
//
this.label1.Location = new System.Drawing.Point(5, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(152, 22);
this.label1.Text = "移动延时(毫秒)";
//
// label2
//
this.label2.Location = new System.Drawing.Point(5, 55);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(152, 22);
this.label2.Text = "回放延时(毫秒)";
//
// tbxStepDelay
//
this.tbxStepDelay.Location = new System.Drawing.Point(5, 30);
this.tbxStepDelay.MaxLength = 4;
this.tbxStepDelay.Name = "tbxStepDelay";
this.tbxStepDelay.Size = new System.Drawing.Size(152, 22);
this.tbxStepDelay.TabIndex = 0;
//
// tbxReplayDelay
//
this.tbxReplayDelay.Location = new System.Drawing.Point(5, 76);
this.tbxReplayDelay.MaxLength = 4;
this.tbxReplayDelay.Name = "tbxReplayDelay";
this.tbxReplayDelay.Size = new System.Drawing.Size(152, 22);
this.tbxReplayDelay.TabIndex = 1;
//
// OptionDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(176, 180);
this.Controls.Add(this.tbxReplayDelay);
this.Controls.Add(this.tbxStepDelay);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.chkSave);
this.Menu = this.mnuMain;
this.Name = "OptionDlg";
this.Text = "选项 - 推箱子";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem miOk;
private System.Windows.Forms.MenuItem miCancel;
private System.Windows.Forms.CheckBox chkSave;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox tbxStepDelay;
private System.Windows.Forms.TextBox tbxReplayDelay;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -