📄 printcheckoutform.designer.cs
字号:
namespace MyHotel
{
partial class PrintCheckOutForm
{
/// <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()
{
System.Windows.Forms.Label 开始日期Label;
System.Windows.Forms.Label 结束日期Label;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrintCheckOutForm));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.打印Button = new System.Windows.Forms.Button();
this.查询Button = new System.Windows.Forms.Button();
this.结帐DataGridView = new System.Windows.Forms.DataGridView();
this.开始日期DateTimePicker = new System.Windows.Forms.DateTimePicker();
this.结束日期DateTimePicker = new System.Windows.Forms.DateTimePicker();
开始日期Label = new System.Windows.Forms.Label();
结束日期Label = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.结帐DataGridView)).BeginInit();
this.SuspendLayout();
//
// 开始日期Label
//
开始日期Label.AutoSize = true;
开始日期Label.Location = new System.Drawing.Point(7, 10);
开始日期Label.Name = "开始日期Label";
开始日期Label.Size = new System.Drawing.Size(59, 12);
开始日期Label.TabIndex = 81;
开始日期Label.Text = "开始日期:";
//
// 结束日期Label
//
结束日期Label.AutoSize = true;
结束日期Label.Location = new System.Drawing.Point(195, 10);
结束日期Label.Name = "结束日期Label";
结束日期Label.Size = new System.Drawing.Size(59, 12);
结束日期Label.TabIndex = 83;
结束日期Label.Text = "结束日期:";
//
// 打印Button
//
this.打印Button.Image = ((System.Drawing.Image)(resources.GetObject("打印Button.Image")));
this.打印Button.Location = new System.Drawing.Point(459, 4);
this.打印Button.Name = "打印Button";
this.打印Button.Size = new System.Drawing.Size(70, 25);
this.打印Button.TabIndex = 87;
this.打印Button.Text = "打印";
this.打印Button.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.打印Button.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.打印Button.UseVisualStyleBackColor = true;
this.打印Button.Click += new System.EventHandler(this.打印Button_Click);
//
// 查询Button
//
this.查询Button.Image = ((System.Drawing.Image)(resources.GetObject("查询Button.Image")));
this.查询Button.Location = new System.Drawing.Point(383, 5);
this.查询Button.Name = "查询Button";
this.查询Button.Size = new System.Drawing.Size(70, 25);
this.查询Button.TabIndex = 86;
this.查询Button.Text = "查询";
this.查询Button.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.查询Button.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.查询Button.UseVisualStyleBackColor = true;
this.查询Button.Click += new System.EventHandler(this.查询Button_Click);
//
// 结帐DataGridView
//
this.结帐DataGridView.BackgroundColor = System.Drawing.SystemColors.MenuHighlight;
this.结帐DataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.结帐DataGridView.Location = new System.Drawing.Point(3, 32);
this.结帐DataGridView.Name = "结帐DataGridView";
this.结帐DataGridView.ReadOnly = true;
this.结帐DataGridView.RowHeadersVisible = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.Green;
dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Yellow;
this.结帐DataGridView.RowsDefaultCellStyle = dataGridViewCellStyle1;
this.结帐DataGridView.RowTemplate.Height = 23;
this.结帐DataGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.结帐DataGridView.Size = new System.Drawing.Size(535, 379);
this.结帐DataGridView.TabIndex = 85;
//
// 开始日期DateTimePicker
//
this.开始日期DateTimePicker.Location = new System.Drawing.Point(72, 6);
this.开始日期DateTimePicker.Name = "开始日期DateTimePicker";
this.开始日期DateTimePicker.Size = new System.Drawing.Size(118, 21);
this.开始日期DateTimePicker.TabIndex = 82;
this.开始日期DateTimePicker.Value = new System.DateTime(2006, 2, 16, 19, 14, 0, 0);
//
// 结束日期DateTimePicker
//
this.结束日期DateTimePicker.Location = new System.Drawing.Point(260, 6);
this.结束日期DateTimePicker.Name = "结束日期DateTimePicker";
this.结束日期DateTimePicker.Size = new System.Drawing.Size(117, 21);
this.结束日期DateTimePicker.TabIndex = 84;
//
// PrintCheckOutForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
this.ClientSize = new System.Drawing.Size(540, 414);
this.Controls.Add(this.打印Button);
this.Controls.Add(this.查询Button);
this.Controls.Add(this.结帐DataGridView);
this.Controls.Add(开始日期Label);
this.Controls.Add(this.开始日期DateTimePicker);
this.Controls.Add(结束日期Label);
this.Controls.Add(this.结束日期DateTimePicker);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "PrintCheckOutForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "打印入住旅客结帐信息";
((System.ComponentModel.ISupportInitialize)(this.结帐DataGridView)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button 打印Button;
private System.Windows.Forms.Button 查询Button;
private System.Windows.Forms.DataGridView 结帐DataGridView;
private System.Windows.Forms.DateTimePicker 开始日期DateTimePicker;
private System.Windows.Forms.DateTimePicker 结束日期DateTimePicker;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -