📄 neworder.designer.cs
字号:
namespace HardwareDistributor.UI
{
partial class NewOrder
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItemCancel = new System.Windows.Forms.MenuItem();
this.menuItemCreate = new System.Windows.Forms.MenuItem();
this.label1 = new System.Windows.Forms.Label();
this.cboCustomer = new System.Windows.Forms.ComboBox();
this.cboInventoryItems = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.numericUpDownQty = new System.Windows.Forms.NumericUpDown();
this.label4 = new System.Windows.Forms.Label();
this.btnAdd = new System.Windows.Forms.Button();
this.btnRemove = new System.Windows.Forms.Button();
this.label5 = new System.Windows.Forms.Label();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeaderQty = new System.Windows.Forms.ColumnHeader();
this.columnHeaderItem = new System.Windows.Forms.ColumnHeader();
this.columnHeaderInventoryId = new System.Windows.Forms.ColumnHeader();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.lblPrice = new System.Windows.Forms.Label();
this.linkLabelHelp = new System.Windows.Forms.LinkLabel();
this.notification1 = new Microsoft.WindowsCE.Forms.Notification();
this.SuspendLayout();
//
// mainMenu1
//
this.mainMenu1.MenuItems.Add(this.menuItemCancel);
this.mainMenu1.MenuItems.Add(this.menuItemCreate);
//
// menuItemCancel
//
this.menuItemCancel.Text = "Cancel";
this.menuItemCancel.Click += new System.EventHandler(this.menuItemCancel_Click);
//
// menuItemCreate
//
this.menuItemCreate.Text = "Create";
this.menuItemCreate.Click += new System.EventHandler(this.menuItemCreate_Click);
//
// label1
//
this.label1.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label1.Location = new System.Drawing.Point(3, 3);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(117, 14);
this.label1.Text = "Select Customer:";
//
// cboCustomer
//
this.cboCustomer.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cboCustomer.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.cboCustomer.Location = new System.Drawing.Point(3, 18);
this.cboCustomer.Name = "cboCustomer";
this.cboCustomer.Size = new System.Drawing.Size(234, 22);
this.cboCustomer.TabIndex = 1;
//
// cboInventoryItems
//
this.cboInventoryItems.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.cboInventoryItems.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.cboInventoryItems.Location = new System.Drawing.Point(3, 56);
this.cboInventoryItems.Name = "cboInventoryItems";
this.cboInventoryItems.Size = new System.Drawing.Size(234, 22);
this.cboInventoryItems.TabIndex = 3;
this.cboInventoryItems.SelectedIndexChanged += new System.EventHandler(this.cboInventoryItems_SelectedIndexChanged);
//
// label2
//
this.label2.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label2.Location = new System.Drawing.Point(3, 41);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(145, 14);
this.label2.Text = "Select Hardware Item:";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label3.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label3.Location = new System.Drawing.Point(116, 82);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(63, 14);
this.label3.Text = "Quantity:";
//
// numericUpDownQty
//
this.numericUpDownQty.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.numericUpDownQty.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.numericUpDownQty.Location = new System.Drawing.Point(182, 80);
this.numericUpDownQty.Maximum = new decimal(new int[] {
200,
0,
0,
0});
this.numericUpDownQty.Name = "numericUpDownQty";
this.numericUpDownQty.Size = new System.Drawing.Size(55, 22);
this.numericUpDownQty.TabIndex = 7;
this.numericUpDownQty.Value = new decimal(new int[] {
1,
0,
0,
0});
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label4.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold);
this.label4.Location = new System.Drawing.Point(116, 148);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(93, 14);
this.label4.Text = "Add items:";
//
// btnAdd
//
this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnAdd.Location = new System.Drawing.Point(116, 166);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(56, 18);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -