📄 picking.designer.cs
字号:
namespace HardwareDistributor.UI
{
partial class Picking
{
/// <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(Picking));
this.mainMenu = new System.Windows.Forms.MainMenu();
this.menuItemCancel = new System.Windows.Forms.MenuItem();
this.menuItemMenu = new System.Windows.Forms.MenuItem();
this.menuItemStage = new System.Windows.Forms.MenuItem();
this.menuItemViewStaged = new System.Windows.Forms.MenuItem();
this.menuItemFinish = new System.Windows.Forms.MenuItem();
this.pickedItemsListView = new System.Windows.Forms.ListView();
this.columnHeaderQty = new System.Windows.Forms.ColumnHeader();
this.columnHeaderHardware = new System.Windows.Forms.ColumnHeader();
this.columnHeaderStock = new System.Windows.Forms.ColumnHeader();
this.columnHeaderLocation = new System.Windows.Forms.ColumnHeader();
this.columnHeaderInvId = new System.Windows.Forms.ColumnHeader();
this.pickItemsLabel = new System.Windows.Forms.Label();
this.linkLabelHelp = new System.Windows.Forms.LinkLabel();
this.statusBarLabel = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// mainMenu
//
this.mainMenu.MenuItems.Add(this.menuItemCancel);
this.mainMenu.MenuItems.Add(this.menuItemMenu);
//
// menuItemCancel
//
resources.ApplyResources(this.menuItemCancel, "menuItemCancel");
this.menuItemCancel.Click += new System.EventHandler(this.menuItemCancel_Click);
//
// menuItemMenu
//
resources.ApplyResources(this.menuItemMenu, "menuItemMenu");
this.menuItemMenu.MenuItems.Add(this.menuItemStage);
this.menuItemMenu.MenuItems.Add(this.menuItemViewStaged);
this.menuItemMenu.MenuItems.Add(this.menuItemFinish);
//
// menuItemStage
//
resources.ApplyResources(this.menuItemStage, "menuItemStage");
this.menuItemStage.Click += new System.EventHandler(this.menuItemStage_Click);
//
// menuItemViewStaged
//
resources.ApplyResources(this.menuItemViewStaged, "menuItemViewStaged");
this.menuItemViewStaged.Click += new System.EventHandler(this.menuItemShowStaged_Click);
//
// menuItemFinish
//
resources.ApplyResources(this.menuItemFinish, "menuItemFinish");
this.menuItemFinish.Click += new System.EventHandler(this.menuItemFinish_Click);
//
// pickedItemsListView
//
resources.ApplyResources(this.pickedItemsListView, "pickedItemsListView");
this.pickedItemsListView.Columns.Add(this.columnHeaderQty);
this.pickedItemsListView.Columns.Add(this.columnHeaderHardware);
this.pickedItemsListView.Columns.Add(this.columnHeaderStock);
this.pickedItemsListView.Columns.Add(this.columnHeaderLocation);
this.pickedItemsListView.Columns.Add(this.columnHeaderInvId);
this.pickedItemsListView.FullRowSelect = true;
this.pickedItemsListView.Name = "pickedItemsListView";
this.pickedItemsListView.View = System.Windows.Forms.View.Details;
this.pickedItemsListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.pickedItemsListView_KeyDown);
//
// columnHeaderQty
//
resources.ApplyResources(this.columnHeaderQty, "columnHeaderQty");
//
// columnHeaderHardware
//
resources.ApplyResources(this.columnHeaderHardware, "columnHeaderHardware");
//
// columnHeaderStock
//
resources.ApplyResources(this.columnHeaderStock, "columnHeaderStock");
//
// columnHeaderLocation
//
resources.ApplyResources(this.columnHeaderLocation, "columnHeaderLocation");
//
// columnHeaderInvId
//
resources.ApplyResources(this.columnHeaderInvId, "columnHeaderInvId");
//
// pickItemsLabel
//
resources.ApplyResources(this.pickItemsLabel, "pickItemsLabel");
this.pickItemsLabel.Name = "pickItemsLabel";
//
// linkLabelHelp
//
resources.ApplyResources(this.linkLabelHelp, "linkLabelHelp");
this.linkLabelHelp.Name = "linkLabelHelp";
this.linkLabelHelp.Click += new System.EventHandler(this.linkLabelHelp_Click);
//
// statusBarLabel
//
resources.ApplyResources(this.statusBarLabel, "statusBarLabel");
this.statusBarLabel.BackColor = System.Drawing.SystemColors.Control;
this.statusBarLabel.Name = "statusBarLabel";
//
// Picking
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
resources.ApplyResources(this, "$this");
this.Controls.Add(this.statusBarLabel);
this.Controls.Add(this.linkLabelHelp);
this.Controls.Add(this.pickItemsLabel);
this.Controls.Add(this.pickedItemsListView);
this.Menu = this.mainMenu;
this.Name = "Picking";
this.Load += new System.EventHandler(this.Picking_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.BackKeyDown);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem menuItemCancel;
private System.Windows.Forms.ListView pickedItemsListView;
private System.Windows.Forms.ColumnHeader columnHeaderQty;
private System.Windows.Forms.ColumnHeader columnHeaderHardware;
private System.Windows.Forms.ColumnHeader columnHeaderStock;
private System.Windows.Forms.ColumnHeader columnHeaderLocation;
private System.Windows.Forms.MenuItem menuItemMenu;
private System.Windows.Forms.ColumnHeader columnHeaderInvId;
private System.Windows.Forms.MenuItem menuItemStage;
private System.Windows.Forms.MenuItem menuItemFinish;
private System.Windows.Forms.MenuItem menuItemViewStaged;
private System.Windows.Forms.Label pickItemsLabel;
private System.Windows.Forms.LinkLabel linkLabelHelp;
private System.Windows.Forms.Label statusBarLabel;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -