📄 neworder.designer.cs
字号:
this.btnAdd.TabIndex = 10;
this.btnAdd.Text = "Add";
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// btnRemove
//
this.btnRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnRemove.Location = new System.Drawing.Point(177, 166);
this.btnRemove.Name = "btnRemove";
this.btnRemove.Size = new System.Drawing.Size(60, 18);
this.btnRemove.TabIndex = 11;
this.btnRemove.Text = "Remove";
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
//
// label5
//
this.label5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label5.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label5.Location = new System.Drawing.Point(116, 104);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(93, 14);
this.label5.Text = "Delivery Date:";
//
// dateTimePicker1
//
this.dateTimePicker1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.dateTimePicker1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dateTimePicker1.Location = new System.Drawing.Point(116, 121);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(121, 22);
this.dateTimePicker1.TabIndex = 14;
//
// listView1
//
this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listView1.CheckBoxes = true;
this.listView1.Columns.Add(this.columnHeaderQty);
this.listView1.Columns.Add(this.columnHeaderItem);
this.listView1.Columns.Add(this.columnHeaderInventoryId);
this.listView1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.listView1.FullRowSelect = true;
this.listView1.Location = new System.Drawing.Point(3, 188);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(234, 75);
this.listView1.TabIndex = 20;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeaderQty
//
this.columnHeaderQty.Text = "Qty";
this.columnHeaderQty.Width = 40;
//
// columnHeaderItem
//
this.columnHeaderItem.Text = "Hardware";
this.columnHeaderItem.Width = 170;
//
// columnHeaderInventoryId
//
this.columnHeaderInventoryId.Text = "InventoryId";
this.columnHeaderInventoryId.Width = 0;
//
// pictureBox1
//
this.pictureBox1.Location = new System.Drawing.Point(3, 82);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(100, 100);
//
// lblPrice
//
this.lblPrice.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.lblPrice.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.lblPrice.Location = new System.Drawing.Point(170, 41);
this.lblPrice.Name = "lblPrice";
this.lblPrice.Size = new System.Drawing.Size(64, 14);
this.lblPrice.TextAlign = System.Drawing.ContentAlignment.TopRight;
//
// linkLabelHelp
//
this.linkLabelHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.linkLabelHelp.Location = new System.Drawing.Point(198, 1);
this.linkLabelHelp.Name = "linkLabelHelp";
this.linkLabelHelp.Size = new System.Drawing.Size(31, 14);
this.linkLabelHelp.TabIndex = 26;
this.linkLabelHelp.Text = "Help";
this.linkLabelHelp.Click += new System.EventHandler(this.linkLabelHelp_Click_1);
//
// notification1
//
this.notification1.Text = "notification1";
this.notification1.BalloonChanged += new Microsoft.WindowsCE.Forms.BalloonChangedEventHandler(this.notification1_BalloonChanged);
//
// NewOrder
//
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, 268);
this.ControlBox = false;
this.Controls.Add(this.linkLabelHelp);
this.Controls.Add(this.lblPrice);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.listView1);
this.Controls.Add(this.dateTimePicker1);
this.Controls.Add(this.label5);
this.Controls.Add(this.btnRemove);
this.Controls.Add(this.btnAdd);
this.Controls.Add(this.label4);
this.Controls.Add(this.numericUpDownQty);
this.Controls.Add(this.label3);
this.Controls.Add(this.cboInventoryItems);
this.Controls.Add(this.label2);
this.Controls.Add(this.cboCustomer);
this.Controls.Add(this.label1);
this.KeyPreview = true;
this.Menu = this.mainMenu1;
this.Name = "NewOrder";
this.Text = "New Order";
this.Load += new System.EventHandler(this.NewOrder_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem menuItemCancel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ComboBox cboCustomer;
private System.Windows.Forms.ComboBox cboInventoryItems;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.NumericUpDown numericUpDownQty;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Button btnRemove;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.MenuItem menuItemCreate;
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeaderQty;
private System.Windows.Forms.ColumnHeader columnHeaderItem;
private System.Windows.Forms.ColumnHeader columnHeaderInventoryId;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label lblPrice;
private System.Windows.Forms.LinkLabel linkLabelHelp;
private Microsoft.WindowsCE.Forms.Notification notification1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -