📄 additem.designer.cs
字号:
namespace HardwareDistributor.UI
{
partial class AddItem
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu;
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddItem));
this.mainMenu = new System.Windows.Forms.MainMenu();
this.menuItemCancel = new System.Windows.Forms.MenuItem();
this.menuItemAdd = new System.Windows.Forms.MenuItem();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.quantityLabel = new System.Windows.Forms.Label();
this.InventoryItemsComboBox = new System.Windows.Forms.ComboBox();
this.selectHardwareLabel = new System.Windows.Forms.Label();
this.quantityTextBox = new System.Windows.Forms.TextBox();
this.priceLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.MenuItems.Add(this.menuItemCancel);
this.mainMenu.MenuItems.Add(this.menuItemAdd);
//
// menuItemCancel
//
resources.ApplyResources(this.menuItemCancel, "menuItemCancel");
this.menuItemCancel.Click += new System.EventHandler(this.menuItemCancel_Click);
//
// menuItemAdd
//
resources.ApplyResources(this.menuItemAdd, "menuItemAdd");
this.menuItemAdd.Click += new System.EventHandler(this.menuItem2_Click);
//
// pictureBox1
//
resources.ApplyResources(this.pictureBox1, "pictureBox1");
this.pictureBox1.Name = "pictureBox1";
//
// quantityLabel
//
resources.ApplyResources(this.quantityLabel, "quantityLabel");
this.quantityLabel.Name = "quantityLabel";
//
// InventoryItemsComboBox
//
resources.ApplyResources(this.InventoryItemsComboBox, "InventoryItemsComboBox");
this.InventoryItemsComboBox.Name = "InventoryItemsComboBox";
this.InventoryItemsComboBox.SelectedIndexChanged += new System.EventHandler(this.InventoryItemsCombobox_SelectedIndexChanged);
//
// selectHardwareLabel
//
resources.ApplyResources(this.selectHardwareLabel, "selectHardwareLabel");
this.selectHardwareLabel.Name = "selectHardwareLabel";
//
// quantityTextBox
//
resources.ApplyResources(this.quantityTextBox, "quantityTextBox");
this.quantityTextBox.Name = "quantityTextBox";
this.quantityTextBox.GotFocus += new System.EventHandler(this.quantityTextBox_GotFocus);
//
// priceLabel
//
resources.ApplyResources(this.priceLabel, "priceLabel");
this.priceLabel.Name = "priceLabel";
//
// AddItem
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
resources.ApplyResources(this, "$this");
this.Controls.Add(this.priceLabel);
this.Controls.Add(this.quantityLabel);
this.Controls.Add(this.InventoryItemsComboBox);
this.Controls.Add(this.selectHardwareLabel);
this.Controls.Add(this.quantityTextBox);
this.Controls.Add(this.pictureBox1);
this.Menu = this.mainMenu;
this.Name = "AddItem";
this.Load += new System.EventHandler(this.AddItem_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.BackKeyDown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem menuItemCancel;
private System.Windows.Forms.MenuItem menuItemAdd;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label quantityLabel;
private System.Windows.Forms.ComboBox InventoryItemsComboBox;
private System.Windows.Forms.Label selectHardwareLabel;
private System.Windows.Forms.TextBox quantityTextBox;
private System.Windows.Forms.Label priceLabel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -