⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 warehouse.designer.cs

📁 微软的行业应用解决方案示例
💻 CS
字号:
namespace HardwareDistributor.UI
{
    partial class Warehouse
    {
        /// <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(Warehouse));
            this.mainMenu = new System.Windows.Forms.MainMenu();
            this.menuItemClose = new System.Windows.Forms.MenuItem();
            this.menuItemMenu = new System.Windows.Forms.MenuItem();
            this.menuItemPick = new System.Windows.Forms.MenuItem();
            this.menuItemLoad = new System.Windows.Forms.MenuItem();
            this.menuItemSync = new System.Windows.Forms.MenuItem();
            this.label1 = new System.Windows.Forms.Label();
            this.stagedOrdersLabel = new System.Windows.Forms.Label();
            this.placedOrdersListView = new System.Windows.Forms.ListView();
            this.columnHeaderOrderId = new System.Windows.Forms.ColumnHeader();
            this.columnHeaderCustomer = new System.Windows.Forms.ColumnHeader();
            this.columnHeaderState = new System.Windows.Forms.ColumnHeader();
            this.columnHeaderDelivery = new System.Windows.Forms.ColumnHeader();
            this.pickedOrdersCombobox = new System.Windows.Forms.ComboBox();
            this.statusBarLabel = new System.Windows.Forms.Label();
            this.linkLabelHelp = new System.Windows.Forms.LinkLabel();
            this.SuspendLayout();
            // 
            // mainMenu
            // 
            this.mainMenu.MenuItems.Add(this.menuItemClose);
            this.mainMenu.MenuItems.Add(this.menuItemMenu);
            // 
            // menuItemClose
            // 
            resources.ApplyResources(this.menuItemClose, "menuItemClose");
            this.menuItemClose.Click += new System.EventHandler(this.menuItemExit_Click);
            // 
            // menuItemMenu
            // 
            this.menuItemMenu.MenuItems.Add(this.menuItemPick);
            this.menuItemMenu.MenuItems.Add(this.menuItemLoad);
            this.menuItemMenu.MenuItems.Add(this.menuItemSync);
            resources.ApplyResources(this.menuItemMenu, "menuItemMenu");
            // 
            // menuItemPick
            // 
            resources.ApplyResources(this.menuItemPick, "menuItemPick");
            this.menuItemPick.Click += new System.EventHandler(this.menuItemPick_Click);
            // 
            // menuItemLoad
            // 
            resources.ApplyResources(this.menuItemLoad, "menuItemLoad");
            this.menuItemLoad.Click += new System.EventHandler(this.menuItemLoad_Click);
            // 
            // menuItemSync
            // 
            resources.ApplyResources(this.menuItemSync, "menuItemSync");
            this.menuItemSync.Click += new System.EventHandler(this.menuItemSync_Click);
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // stagedOrdersLabel
            // 
            resources.ApplyResources(this.stagedOrdersLabel, "stagedOrdersLabel");
            this.stagedOrdersLabel.Name = "stagedOrdersLabel";
            // 
            // placedOrdersListView
            // 
            resources.ApplyResources(this.placedOrdersListView, "placedOrdersListView");
            this.placedOrdersListView.Columns.Add(this.columnHeaderOrderId);
            this.placedOrdersListView.Columns.Add(this.columnHeaderCustomer);
            this.placedOrdersListView.Columns.Add(this.columnHeaderState);
            this.placedOrdersListView.Columns.Add(this.columnHeaderDelivery);
            this.placedOrdersListView.FullRowSelect = true;
            this.placedOrdersListView.Name = "placedOrdersListView";
            this.placedOrdersListView.View = System.Windows.Forms.View.Details;
            this.placedOrdersListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.placedOrdersListView_KeyDown);
            // 
            // columnHeaderOrderId
            // 
            resources.ApplyResources(this.columnHeaderOrderId, "columnHeaderOrderId");
            // 
            // columnHeaderCustomer
            // 
            resources.ApplyResources(this.columnHeaderCustomer, "columnHeaderCustomer");
            // 
            // columnHeaderState
            // 
            resources.ApplyResources(this.columnHeaderState, "columnHeaderState");
            // 
            // columnHeaderDelivery
            // 
            resources.ApplyResources(this.columnHeaderDelivery, "columnHeaderDelivery");
            // 
            // pickedOrdersCombobox
            // 
            resources.ApplyResources(this.pickedOrdersCombobox, "pickedOrdersCombobox");
            this.pickedOrdersCombobox.ForeColor = System.Drawing.Color.Black;
            this.pickedOrdersCombobox.Name = "pickedOrdersCombobox";
            // 
            // statusBarLabel
            // 
            resources.ApplyResources(this.statusBarLabel, "statusBarLabel");
            this.statusBarLabel.BackColor = System.Drawing.SystemColors.Control;
            this.statusBarLabel.Name = "statusBarLabel";
            // 
            // linkLabelHelp
            // 
            resources.ApplyResources(this.linkLabelHelp, "linkLabelHelp");
            this.linkLabelHelp.Name = "linkLabelHelp";
            this.linkLabelHelp.Click += new System.EventHandler(this.linkLabelHelp_Click);
            // 
            // Warehouse
            // 
            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.placedOrdersListView);
            this.Controls.Add(this.stagedOrdersLabel);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pickedOrdersCombobox);
            this.Menu = this.mainMenu;
            this.Name = "Warehouse";
            this.Load += new System.EventHandler(this.Warehouse_Load);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.Warehouse_Paint);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.BackKeyDown);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.MenuItem menuItemClose;
        private System.Windows.Forms.MenuItem menuItemMenu;
        private System.Windows.Forms.MenuItem menuItemPick;
        private System.Windows.Forms.MenuItem menuItemLoad;
        private System.Windows.Forms.MenuItem menuItemSync;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label stagedOrdersLabel;
        private System.Windows.Forms.ListView placedOrdersListView;
        private System.Windows.Forms.ColumnHeader columnHeaderCustomer;
        private System.Windows.Forms.ColumnHeader columnHeaderState;
        private System.Windows.Forms.ComboBox pickedOrdersCombobox;
		private System.Windows.Forms.Label statusBarLabel;
        private System.Windows.Forms.LinkLabel linkLabelHelp;
        private System.Windows.Forms.ColumnHeader columnHeaderOrderId;
        private System.Windows.Forms.ColumnHeader columnHeaderDelivery;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -