selectgroupdlg.designer.cs
来自「手机软件开发..手机软件开发..手机软件开发..手机软件开发..」· CS 代码 · 共 86 行
CS
86 行
namespace Skyiv.Ben.PushBox.Window
{
partial class SelectGroupDlg
{
/// <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.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.lbxGroup = new System.Windows.Forms.ListBox();
this.SuspendLayout();
//
// btnOk
//
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnOk.Location = new System.Drawing.Point(3, 3);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(112, 20);
this.btnOk.TabIndex = 0;
this.btnOk.Text = "确定";
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(125, 3);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(112, 20);
this.btnCancel.TabIndex = 1;
this.btnCancel.Text = "取消";
//
// lbxGroup
//
this.lbxGroup.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lbxGroup.Location = new System.Drawing.Point(3, 29);
this.lbxGroup.Name = "lbxGroup";
this.lbxGroup.Size = new System.Drawing.Size(234, 254);
this.lbxGroup.TabIndex = 2;
//
// SelectGroupDlg
//
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, 294);
this.Controls.Add(this.lbxGroup);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.Name = "SelectGroupDlg";
this.Text = "选组 - 推箱子";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ListBox lbxGroup;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?