using System.Windows.Forms; namespace EndaccountManage { partial class Form1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows 窗体设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { this.toolStrip1 = new System.Windows.Forms.ToolStrip(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.SHOPMESSAGE = new System.Windows.Forms.ToolStripComboBox(); this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel(); this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel(); this.toolStripButton1 = new System.Windows.Forms.ToolStripButton(); this.StartDate = new System.Windows.Forms.DateTimePicker(); this.EndDate = new System.Windows.Forms.DateTimePicker(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.toolStrip1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.SuspendLayout(); // // toolStrip1 // this.toolStrip1.AutoSize = false; this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripLabel1, this.SHOPMESSAGE, this.toolStripLabel2, this.toolStripLabel3, this.toolStripButton1}); this.toolStrip1.Location = new System.Drawing.Point(0, 0); this.toolStrip1.Name = "toolStrip1"; this.toolStrip1.Size = new System.Drawing.Size(1084, 37); this.toolStrip1.TabIndex = 0; this.toolStrip1.Text = "toolStrip1"; // // toolStripLabel1 // this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Size = new System.Drawing.Size(68, 34); this.toolStripLabel1.Text = "门店名称:"; // // SHOPMESSAGE // this.SHOPMESSAGE.Name = "SHOPMESSAGE"; this.SHOPMESSAGE.Size = new System.Drawing.Size(140, 37); // // toolStripLabel2 // this.toolStripLabel2.Name = "toolStripLabel2"; this.toolStripLabel2.Size = new System.Drawing.Size(68, 34); this.toolStripLabel2.Text = "开始时间:"; // // toolStripLabel3 // this.toolStripLabel3.Name = "toolStripLabel3"; this.toolStripLabel3.Size = new System.Drawing.Size(68, 34); this.toolStripLabel3.Text = "结束时间:"; // // toolStripButton1 // this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; this.toolStripButton1.Image = global::EndaccountManage.Properties.Resources.Search; this.toolStripButton1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta; this.toolStripButton1.Name = "toolStripButton1"; this.toolStripButton1.Size = new System.Drawing.Size(66, 34); this.toolStripButton1.Text = "toolStripButton1"; this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click); // // StartDate // this.StartDate.CustomFormat = "yyyy/MM/dd"; this.StartDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.StartDate.Location = new System.Drawing.Point(287, 6); this.StartDate.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.StartDate.Name = "StartDate"; this.StartDate.Size = new System.Drawing.Size(116, 23); this.StartDate.TabIndex = 1; // // EndDate // this.EndDate.CustomFormat = "yyyy/MM/dd"; this.EndDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom; this.EndDate.Location = new System.Drawing.Point(471, 6); this.EndDate.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.EndDate.Name = "EndDate"; this.EndDate.Size = new System.Drawing.Size(116, 23); this.EndDate.TabIndex = 2; // // dataGridView1 // this.dataGridView1.AllowUserToAddRows = false; this.dataGridView1.AllowUserToDeleteRows = false; this.dataGridView1.AllowUserToOrderColumns = true; this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridView1.Location = new System.Drawing.Point(0, 37); this.dataGridView1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.RowTemplate.Height = 23; this.dataGridView1.Size = new System.Drawing.Size(1084, 624); this.dataGridView1.TabIndex = 3; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1084, 661); this.Controls.Add(this.dataGridView1); this.Controls.Add(this.StartDate); this.Controls.Add(this.toolStrip1); this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.Name = "Form1"; this.Text = "结账数据校验"; this.Load += new System.EventHandler(this.Form1_Load); this.toolStrip1.ResumeLayout(false); this.toolStrip1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); this.ResumeLayout(false); toolStrip1.Items.Insert(3, new ToolStripControlHost(StartDate)); toolStrip1.Items.Insert(5, new ToolStripControlHost(EndDate)); } #endregion private System.Windows.Forms.ToolStrip toolStrip1; private System.Windows.Forms.ToolStripLabel toolStripLabel1; private System.Windows.Forms.ToolStripComboBox SHOPMESSAGE; private System.Windows.Forms.ToolStripLabel toolStripLabel2; private System.Windows.Forms.ToolStripLabel toolStripLabel3; private System.Windows.Forms.ToolStripButton toolStripButton1; private DateTimePicker StartDate; private DateTimePicker EndDate; private DataGridView dataGridView1; } }