📄 frmremind.designer.cs
字号:
namespace Hotel.UI
{
partial class frmRemind
{
/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
this.lsvShow = new System.Windows.Forms.ListView();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.cboState = new System.Windows.Forms.ComboBox();
this.dtpRe = new System.Windows.Forms.DateTimePicker();
this.txtTime = new System.Windows.Forms.TextBox();
this.txtRemind = new System.Windows.Forms.TextBox();
this.btnModifi = new System.Windows.Forms.Button();
this.btnExit = new System.Windows.Forms.Button();
this.btnAdd = new System.Windows.Forms.Button();
this.btnDelete = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.lsvShow);
this.groupBox1.Location = new System.Drawing.Point(7, 215);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(358, 175);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "提醒";
//
// lsvShow
//
this.lsvShow.FullRowSelect = true;
this.lsvShow.GridLines = true;
this.lsvShow.Location = new System.Drawing.Point(6, 17);
this.lsvShow.Name = "lsvShow";
this.lsvShow.Size = new System.Drawing.Size(343, 147);
this.lsvShow.TabIndex = 0;
this.lsvShow.UseCompatibleStateImageBehavior = false;
this.lsvShow.View = System.Windows.Forms.View.Details;
this.lsvShow.SelectedIndexChanged += new System.EventHandler(this.lsvShow_SelectedIndexChanged);
//
// groupBox2
//
this.groupBox2.Controls.Add(this.cboState);
this.groupBox2.Controls.Add(this.dtpRe);
this.groupBox2.Controls.Add(this.txtTime);
this.groupBox2.Controls.Add(this.txtRemind);
this.groupBox2.Controls.Add(this.btnModifi);
this.groupBox2.Controls.Add(this.btnExit);
this.groupBox2.Controls.Add(this.btnAdd);
this.groupBox2.Controls.Add(this.btnDelete);
this.groupBox2.Controls.Add(this.label1);
this.groupBox2.Controls.Add(this.label4);
this.groupBox2.Controls.Add(this.label2);
this.groupBox2.Location = new System.Drawing.Point(7, 6);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(358, 203);
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "设置";
//
// cboState
//
this.cboState.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cboState.FormattingEnabled = true;
this.cboState.Items.AddRange(new object[] {
"启用",
"停用"});
this.cboState.Location = new System.Drawing.Point(66, 82);
this.cboState.Name = "cboState";
this.cboState.Size = new System.Drawing.Size(95, 20);
this.cboState.TabIndex = 3;
//
// dtpRe
//
this.dtpRe.Location = new System.Drawing.Point(66, 24);
this.dtpRe.Name = "dtpRe";
this.dtpRe.Size = new System.Drawing.Size(199, 21);
this.dtpRe.TabIndex = 1;
this.dtpRe.Value = new System.DateTime(2008, 5, 22, 15, 40, 0, 0);
this.dtpRe.ValueChanged += new System.EventHandler(this.dtpRe_ValueChanged);
//
// txtTime
//
this.txtTime.Location = new System.Drawing.Point(66, 54);
this.txtTime.Name = "txtTime";
this.txtTime.Size = new System.Drawing.Size(203, 21);
this.txtTime.TabIndex = 2;
//
// txtRemind
//
this.txtRemind.Location = new System.Drawing.Point(66, 113);
this.txtRemind.Multiline = true;
this.txtRemind.Name = "txtRemind";
this.txtRemind.Size = new System.Drawing.Size(203, 84);
this.txtRemind.TabIndex = 2;
//
// btnModifi
//
this.btnModifi.Location = new System.Drawing.Point(281, 82);
this.btnModifi.Name = "btnModifi";
this.btnModifi.Size = new System.Drawing.Size(64, 25);
this.btnModifi.TabIndex = 1;
this.btnModifi.Text = "修改(&M)";
this.btnModifi.UseVisualStyleBackColor = true;
this.btnModifi.Click += new System.EventHandler(this.btnModifi_Click);
//
// btnExit
//
this.btnExit.Location = new System.Drawing.Point(281, 113);
this.btnExit.Name = "btnExit";
this.btnExit.Size = new System.Drawing.Size(64, 25);
this.btnExit.TabIndex = 1;
this.btnExit.Text = "退出(&E)";
this.btnExit.UseVisualStyleBackColor = true;
this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(281, 20);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(64, 25);
this.btnAdd.TabIndex = 1;
this.btnAdd.Text = "添加(&A)";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(281, 51);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(64, 25);
this.btnDelete.TabIndex = 1;
this.btnDelete.Text = "删除(&D)";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(4, 84);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 0;
this.label1.Text = "状态:";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(19, 113);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(41, 12);
this.label4.TabIndex = 0;
this.label4.Text = "内容:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(4, 57);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 0;
this.label2.Text = "提醒时间:";
//
// frmRemind
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(377, 402);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmRemind";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "电子提醒";
this.Load += new System.EventHandler(this.frmRemind_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox2.ResumeLayout(false);
this.groupBox2.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btnModifi;
private System.Windows.Forms.Button btnExit;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.TextBox txtTime;
private System.Windows.Forms.TextBox txtRemind;
private System.Windows.Forms.DateTimePicker dtpRe;
private System.Windows.Forms.ListView lsvShow;
private System.Windows.Forms.ComboBox cboState;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -