本文整理汇总了C#中System.Windows.Forms.ToolStripStatusLabel类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ToolStripStatusLabel类的具体用法?C# System.Windows.Forms.ToolStripStatusLabel怎么用?C# System.Windows.Forms.ToolStripStatusLabel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.ToolStripStatusLabel类属于命名空间,在下文中一共展示了System.Windows.Forms.ToolStripStatusLabel类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.overlay = new System.Windows.Forms.PictureBox();
this.btnStart = new System.Windows.Forms.Button();
this.strip = new System.Windows.Forms.StatusStrip();
this.status = new System.Windows.Forms.ToolStripStatusLabel();
((System.ComponentModel.ISupportInitialize)(this.overlay)).BeginInit();
this.strip.SuspendLayout();
this.SuspendLayout();
//
// overlay
//
this.overlay.Location = new System.Drawing.Point(13, 13);
this.overlay.Name = "overlay";
this.overlay.Size = new System.Drawing.Size(640, 480);
this.overlay.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.overlay.TabIndex = 0;
this.overlay.TabStop = false;
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(660, 13);
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(130, 49);
this.btnStart.TabIndex = 1;
this.btnStart.Text = "Start Tracking";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// strip
//
this.strip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.status});
this.strip.Location = new System.Drawing.Point(0, 507);
this.strip.Name = "strip";
this.strip.Size = new System.Drawing.Size(802, 22);
this.strip.TabIndex = 2;
this.strip.Text = "statusStrip1";
//
// status
//
this.status.Name = "status";
this.status.Size = new System.Drawing.Size(0, 17);
//
// frmTrackMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(802, 529);
this.Controls.Add(this.strip);
this.Controls.Add(this.btnStart);
this.Controls.Add(this.overlay);
this.Name = "frmTrackMain";
this.Text = "CMT Tracking Host Test";
((System.ComponentModel.ISupportInitialize)(this.overlay)).EndInit();
this.strip.ResumeLayout(false);
this.strip.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
示例2: IpcTreeWebWindowThread
/// <summary>
/// Instantiates IpcTreeWebWindowThread. Contains threaded IPC event listener
/// that synchronizes Winform tree view, and displays or caches data from IPC event
/// </summary>
/// <param name="ipcType"></param>
/// <param name="tsslStatus"></param>
/// <param name="utilsBus"></param>
/// <param name="func"></param>
public IpcTreeWebWindowThread(string ipcType
, System.Windows.Forms.ToolStripStatusLabel tsslStatus
, Niawa.Utilities.UtilsServiceBus utilsBus
, IpcTreeWebWindowFunctions func)
{
_ipcType = ipcType;
_tsslStatus = tsslStatus;
_utilsBus = utilsBus;
_func = func;
}
示例3: IpcWebWindowFunctions
public IpcWebWindowFunctions(string ipcEvent
, IpcWebWindow window
, System.Windows.Forms.ToolStripButton tsbMonitor
, System.Windows.Forms.ToolStripStatusLabel tsslStatus)
{
_ipcEvent = ipcEvent;
_window = window;
_tsbMonitor = tsbMonitor;
_browser = _window.WebBrowser1;
_tsslStatus = tsslStatus;
}
示例4: IpcWindowFunctions
public IpcWindowFunctions(string ipcEvent
, IpcWindow window
, System.Windows.Forms.ToolStripButton tsbMonitor
, System.Windows.Forms.DataGridView dgvMonitor
, System.Windows.Forms.ToolStripStatusLabel tsslStatus)
{
_ipcEvent = ipcEvent;
_window = window;
_tsbMonitor = tsbMonitor;
_dgvMonitor = dgvMonitor;
_tsslStatus = tsslStatus;
}
示例5: IpcEventTreeModelAdapterThread
/// <summary>
/// Instantiates an IpcEventThread
/// </summary>
/// <param name="ipcType"></param>
/// <param name="treeModelController"></param>
/// <param name="tsslStatus"></param>
/// <param name="utilsBus"></param>
public IpcEventTreeModelAdapterThread(string ipcType
, Niawa.TreeModelNodeControls.TreeModelController treeModelController
, System.Windows.Forms.ToolStripStatusLabel tsslStatus
, Niawa.Utilities.UtilsServiceBus utilsBus
, IpcEventTreeModelAdapter parentControl)
{
_treeModelController = treeModelController;
_parentControl = parentControl;
_ipcType = ipcType;
_tsslStatus = tsslStatus;
_utilsBus = utilsBus;
}
示例6: IpcTreeWebWindowFunctions
/// <summary>
/// Instantiates IpcTreeWebWindowFunctions. Functions support IpcTreeWebWindow win form.
/// </summary>
/// <param name="ipcEvents"></param>
/// <param name="window"></param>
/// <param name="mdiWindow"></param>
/// <param name="tsslStatus"></param>
/// <param name="treeView"></param>
public IpcTreeWebWindowFunctions(List<string> ipcEvents
, IpcTreeWebWindow window
, IpcEventMonitorContainer mdiWindow
, System.Windows.Forms.ToolStripStatusLabel tsslStatus
, System.Windows.Forms.TreeView treeView)
{
_ipcEvents = ipcEvents;
_window = window;
_mdiWindow = mdiWindow;
_tsslStatus = tsslStatus;
_treeView = treeView;
_treeModel = new FormFunctions.IpcTreeWebWindowTreeModel(_treeView, _window);
//a thread for each IPC Type Reader
threads = new SortedList<string, IpcTreeWebWindowThread>();
}
示例7: NewEmployeeAssignment
public NewEmployeeAssignment(DataTable plan,
DataTable availableListOfEmpl, /* The list of all employee of production */
List<EmployeeAssignment_ProrityTable> priorityList,
System.Windows.Forms.ToolStripStatusLabel StatusLabel1,
System.Windows.Forms.ToolStripProgressBar ProgressBar1,
ref string InputCheckingResult)
{
_plan = plan;
_availableEmpList = availableListOfEmpl;
_priorityList = priorityList;
_StatusLabel1 = StatusLabel1;
_ProgressBar1 = ProgressBar1;
LoadInternalData();
Log(_availableEmpList, "_availableEmpList", ".csv", true);
//Log the priority list
LogInputPriortiyData(_priorityList, "_PrioirtyList", ".csv");
InputCheckingResult = CheckInputData();
DataTable test = GetAllPlanDataOfThisLine("HH02");
DataTable test1 = GetListOfEmptyWstOfThisLine("HH02", "Shift_1");
DataTable test2 = GetListOfEmptyWstOfThisLine("HH02", "Shift_2");
DataTable test3 = GetListOfEmptyWstOfThisLine("HH02", "Shift_3");
DataTable test4 = GetPlanDataOfThisLine("HH02", "Shift_1", WST_State.All);
DataTable test5 = GetPlanDataOfThisLine("HH02", "Shift_2", WST_State.All);
DataTable test6 = GetPlanDataOfThisLine("HH02", "Shift_3", WST_State.All);
//DataTable test4 = GetAllPlanDataOfThisLine("HH02");
if (test != null && test4 != null && test5 != null && test6 != null)
{
if (test.Rows.Count != (test4.Rows.Count + test5.Rows.Count + test6.Rows.Count ))
{
//Log here.
int a = 0 ;
}
}
//Nếu có một vài nhân viên đã được manual assign, remove những nhân viên này ra khỏi available list
InputCheckingResult += CheckAndRemoveMEmployeeAssignedManually();
}
示例8: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.tSeat = new System.Windows.Forms.ToolStripTextBox();
this.payTool = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
this.orderTool = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
this.toolTech = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
this.btnRoom = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
this.toolAllOrder = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
this.btnCashierTable = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
this.btnDeposit = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
this.toolMember = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolPreprint = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
this.toolPwd = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
this.toolWarn = new System.Windows.Forms.ToolStripButton();
this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
this.toolExit = new System.Windows.Forms.ToolStripButton();
this.seatContext = new System.Windows.Forms.ContextMenuStrip(this.components);
this.CtxAddNote = new System.Windows.Forms.ToolStripMenuItem();
this.CtxLock = new System.Windows.Forms.ToolStripMenuItem();
this.CtxSop = new System.Windows.Forms.ToolStripMenuItem();
this.CtxRepay = new System.Windows.Forms.ToolStripMenuItem();
this.CtxReprint = new System.Windows.Forms.ToolStripMenuItem();
this.unWarnTool = new System.Windows.Forms.ToolStripMenuItem();
this.undoTransferTool = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.currentUser = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
this.statusTip = new System.Windows.Forms.ToolStripStatusLabel();
this.aviTip = new System.Windows.Forms.ToolStripStatusLabel();
this.useTip = new System.Windows.Forms.ToolStripStatusLabel();
this.payTip = new System.Windows.Forms.ToolStripStatusLabel();
this.lockTip = new System.Windows.Forms.ToolStripStatusLabel();
this.stopTip = new System.Windows.Forms.ToolStripStatusLabel();
this.warnTip = new System.Windows.Forms.ToolStripStatusLabel();
this.depositTip = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
this.statusStrip2 = new System.Windows.Forms.StatusStrip();
this.LseatTotal = new System.Windows.Forms.ToolStripStatusLabel();
this.seatTotal = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel20 = new System.Windows.Forms.ToolStripStatusLabel();
this.LseatAvi = new System.Windows.Forms.ToolStripStatusLabel();
this.seatAvi = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel21 = new System.Windows.Forms.ToolStripStatusLabel();
this.LmoneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
this.moneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel22 = new System.Windows.Forms.ToolStripStatusLabel();
this.LseatPaid = new System.Windows.Forms.ToolStripStatusLabel();
this.seatPaid = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel23 = new System.Windows.Forms.ToolStripStatusLabel();
this.LmoneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
this.moneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel24 = new System.Windows.Forms.ToolStripStatusLabel();
this.LseatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
this.seatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel25 = new System.Windows.Forms.ToolStripStatusLabel();
this.LmoneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
this.moneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
this.seatPanel = new System.Windows.Forms.Panel();
this.toolStrip1.SuspendLayout();
this.seatContext.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.statusStrip2.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tSeat,
this.payTool,
this.toolStripLabel2,
this.orderTool,
this.toolStripLabel5,
this.toolTech,
this.toolStripLabel3,
this.btnRoom,
this.toolStripLabel8,
this.toolAllOrder,
this.toolStripLabel4,
this.btnCashierTable,
this.toolStripLabel6,
//.........这里部分代码省略.........
示例9: InitializeComponent
/// <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(WinForm_Abstract));
this.toolStripParent = new System.Windows.Forms.ToolStrip();
this.CancelToolStrip = new System.Windows.Forms.ToolStripButton();
this.SaveToolStrip = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStrip_Label = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
this.toolStripParent.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStripParent
//
this.toolStripParent.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStripParent.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CancelToolStrip,
this.SaveToolStrip,
this.toolStripSeparator1});
this.toolStripParent.Location = new System.Drawing.Point(0, 0);
this.toolStripParent.Name = "toolStripParent";
this.toolStripParent.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
this.toolStripParent.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.toolStripParent.Size = new System.Drawing.Size(590, 54);
this.toolStripParent.TabIndex = 121;
this.toolStripParent.Text = "toolStrip1";
//
// CancelToolStrip
//
this.CancelToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("CancelToolStrip.Image")));
this.CancelToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.CancelToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
this.CancelToolStrip.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
this.CancelToolStrip.Name = "CancelToolStrip";
this.CancelToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.CancelToolStrip.Size = new System.Drawing.Size(47, 51);
this.CancelToolStrip.Text = "&Cancel";
this.CancelToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.CancelToolStrip.Click += new System.EventHandler(this.CancelToolStrip_Click);
//
// SaveToolStrip
//
this.SaveToolStrip.Image = ((System.Drawing.Image)(resources.GetObject("SaveToolStrip.Image")));
this.SaveToolStrip.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.SaveToolStrip.ImageTransparentColor = System.Drawing.Color.Magenta;
this.SaveToolStrip.Name = "SaveToolStrip";
this.SaveToolStrip.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.SaveToolStrip.Size = new System.Drawing.Size(36, 51);
this.SaveToolStrip.Text = "&Save";
this.SaveToolStrip.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.SaveToolStrip.ToolTipText = "Click to Save Customers";
this.SaveToolStrip.Click += new System.EventHandler(this.SaveToolStrip_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 54);
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStrip_Label,
this.toolStripProgressBar1});
this.statusStrip1.Location = new System.Drawing.Point(0, 365);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(590, 22);
this.statusStrip1.TabIndex = 122;
this.statusStrip1.Text = "statusStrip1";
//
// toolStrip_Label
//
this.toolStrip_Label.Name = "toolStrip_Label";
this.toolStrip_Label.Size = new System.Drawing.Size(442, 17);
this.toolStrip_Label.Spring = true;
this.toolStrip_Label.Text = "Enter Details and Click Save.";
this.toolStrip_Label.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
//
// toolStripProgressBar1
//
this.toolStripProgressBar1.Name = "toolStripProgressBar1";
this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 16);
//
// WinForm_Abstract
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(590, 387);
this.Controls.Add(this.statusStrip1);
this.Controls.Add(this.toolStripParent);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Name = "WinForm_Abstract";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Load += new System.EventHandler(this.Winform_DetailsFormat_Load);
this.toolStripParent.ResumeLayout(false);
//.........这里部分代码省略.........
示例10: InitializeComponent
/// <summary>
/// Método necesario para admitir el Diseñador. No se puede modificar
/// el contenido del método con el editor de código.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmMenu));
this.estado = new System.Windows.Forms.StatusStrip();
this.lb_texto = new System.Windows.Forms.ToolStripStatusLabel();
this.lb_estado = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.mnuEntradas = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntAfectaciones = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntAfectacionesSP = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntImpresion = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRpt = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptPartida = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptFolio = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptFolioPartida = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptPedido = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptProveedor = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptDetallado = new System.Windows.Forms.ToolStripMenuItem();
this.mnuEntRptIfai = new System.Windows.Forms.ToolStripMenuItem();
this.mnuSalidas = new System.Windows.Forms.ToolStripMenuItem();
this.afec_salidas = new System.Windows.Forms.ToolStripMenuItem();
this.imp_salida = new System.Windows.Forms.ToolStripMenuItem();
this.rep_salidas = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_partida = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_folio = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_fol_partida = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_area = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_area_costo = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_art_prop = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_prop_area = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_prop_concentrado = new System.Windows.Forms.ToolStripMenuItem();
this.rep_sal_detallado = new System.Windows.Forms.ToolStripMenuItem();
this.mnuInventarios = new System.Windows.Forms.ToolStripMenuItem();
this.mnuInvCierre = new System.Windows.Forms.ToolStripMenuItem();
this.gen_cierre = new System.Windows.Forms.ToolStripMenuItem();
this.imp_cierre = new System.Windows.Forms.ToolStripMenuItem();
this.borrarCierreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.registrarInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.registrarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.marbetesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.asignaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.impresiónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.conteosToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.erConteoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.doConteoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.difConteosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.impresiónToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.difKardexInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.impInventarioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRequisicion = new System.Windows.Forms.ToolStripMenuItem();
this.afectacionesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.impresiónToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.reportesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.costeadaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.porSolicitarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cuadroLicitaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mnuReportes = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptExistencias = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptKardex = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptCaducidades = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptSaldos = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptLento = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptNulo = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptConsumo = new System.Windows.Forms.ToolStripMenuItem();
this.mnuRptPedidosGenerados = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCatalogos = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCatArticulo = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCatModificar = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCatModPartida = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCatModCuadro = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.cat_area = new System.Windows.Forms.ToolStripMenuItem();
this.cat_partida = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCambiar = new System.Windows.Forms.ToolStripMenuItem();
this.mnuSalir = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.estado.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// estado
//
this.estado.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lb_texto});
this.estado.Location = new System.Drawing.Point(0, 572);
this.estado.Name = "estado";
this.estado.Size = new System.Drawing.Size(1025, 22);
this.estado.TabIndex = 2;
this.estado.Text = "StatusStrip";
//
// lb_texto
//.........这里部分代码省略.........
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.lbhienthidiachi = new System.Windows.Forms.Label();
this.lbhienthiten = new System.Windows.Forms.Label();
this.lbhienthima = new System.Windows.Forms.Label();
this.txtdiengiai = new System.Windows.Forms.TextBox();
this.lbdiachi = new System.Windows.Forms.Label();
this.lbdiengiai = new System.Windows.Forms.Label();
this.txtsotienthanhtoan = new System.Windows.Forms.TextBox();
this.lbsotienthanhtoan = new System.Windows.Forms.Label();
this.cbbtientetygia = new System.Windows.Forms.ComboBox();
this.txttientetygia = new System.Windows.Forms.TextBox();
this.lbten = new System.Windows.Forms.Label();
this.lbtientetygia = new System.Windows.Forms.Label();
this.cbbcotaikhoan = new System.Windows.Forms.ComboBox();
this.lbcotaikhoan = new System.Windows.Forms.Label();
this.cbbnotaikhoan = new System.Windows.Forms.ComboBox();
this.lbma = new System.Windows.Forms.Label();
this.lbnotaikhoan = new System.Windows.Forms.Label();
this.txtnguoinoptien = new System.Windows.Forms.TextBox();
this.lbnguoinoptien = new System.Windows.Forms.Label();
this.gnthongtindoituong = new System.Windows.Forms.GroupBox();
this.txtdoituong = new System.Windows.Forms.TextBox();
this.lbdoituong = new System.Windows.Forms.Label();
this.gbtrungtamloinhuam = new System.Windows.Forms.GroupBox();
this.cbbnhomhangcaptren = new System.Windows.Forms.ComboBox();
this.lbnhomhang = new System.Windows.Forms.Label();
this.cbbkhohang = new System.Windows.Forms.ComboBox();
this.lbkhohang = new System.Windows.Forms.Label();
this.lbloaichungtu = new System.Windows.Forms.Label();
this.cbbkhoanmuc = new System.Windows.Forms.ComboBox();
this.lbkhoanmuc = new System.Windows.Forms.Label();
this.cbbloaichungtu = new System.Windows.Forms.ComboBox();
this.label11 = new System.Windows.Forms.Label();
this.mskngaychungtu = new System.Windows.Forms.MaskedTextBox();
this.txtsochungtu = new System.Windows.Forms.TextBox();
this.lbngaychungtu = new System.Windows.Forms.Label();
this.lbsochungtu = new System.Windows.Forms.Label();
this.cbbdoituong = new System.Windows.Forms.ComboBox();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.tsslsua = new System.Windows.Forms.ToolStripStatusLabel();
this.tsslthemmoi = new System.Windows.Forms.ToolStripStatusLabel();
this.tsslin = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripDropDownButton1 = new System.Windows.Forms.ToolStripDropDownButton();
this.tssltrove = new System.Windows.Forms.ToolStripStatusLabel();
this.panel1 = new System.Windows.Forms.Panel();
this.label1 = new System.Windows.Forms.Label();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.btntimkiem = new System.Windows.Forms.Button();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.gnthongtindoituong.SuspendLayout();
this.gbtrungtamloinhuam.SuspendLayout();
this.statusStrip1.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// lbhienthidiachi
//
this.lbhienthidiachi.AutoSize = true;
this.lbhienthidiachi.ForeColor = System.Drawing.SystemColors.Highlight;
this.lbhienthidiachi.Location = new System.Drawing.Point(56, 73);
this.lbhienthidiachi.Name = "lbhienthidiachi";
this.lbhienthidiachi.Size = new System.Drawing.Size(13, 15);
this.lbhienthidiachi.TabIndex = 6;
this.lbhienthidiachi.Text = "3";
//
// lbhienthiten
//
this.lbhienthiten.AutoSize = true;
this.lbhienthiten.ForeColor = System.Drawing.SystemColors.Highlight;
this.lbhienthiten.Location = new System.Drawing.Point(56, 44);
this.lbhienthiten.Name = "lbhienthiten";
this.lbhienthiten.Size = new System.Drawing.Size(13, 15);
this.lbhienthiten.TabIndex = 5;
this.lbhienthiten.Text = "2";
//
// lbhienthima
//
this.lbhienthima.AutoSize = true;
this.lbhienthima.ForeColor = System.Drawing.SystemColors.Highlight;
this.lbhienthima.Location = new System.Drawing.Point(56, 17);
this.lbhienthima.Name = "lbhienthima";
this.lbhienthima.Size = new System.Drawing.Size(13, 15);
this.lbhienthima.TabIndex = 4;
this.lbhienthima.Text = "1";
//
// txtdiengiai
//
this.txtdiengiai.BackColor = System.Drawing.Color.White;
this.txtdiengiai.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtdiengiai.Font = new System.Drawing.Font("Times New Roman", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtdiengiai.Location = new System.Drawing.Point(90, 272);
this.txtdiengiai.MaxLength = 100;
this.txtdiengiai.Name = "txtdiengiai";
//.........这里部分代码省略.........
示例12: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtID = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.txtdonvi = new System.Windows.Forms.MaskedTextBox();
this.txtghichu = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.txtbieutuong = new System.Windows.Forms.TextBox();
this.txttenttl = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.txttenttc = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.txttentt = new System.Windows.Forms.TextBox();
this.txtmatt = new System.Windows.Forms.TextBox();
this.statusStrip2 = new System.Windows.Forms.StatusStrip();
this.tsslThem = new System.Windows.Forms.ToolStripStatusLabel();
this.tsslSua = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel6 = new System.Windows.Forms.ToolStripStatusLabel();
this.tsslDong = new System.Windows.Forms.ToolStripStatusLabel();
this.statusStrip2.SuspendLayout();
this.SuspendLayout();
//
// txtID
//
this.txtID.BackColor = System.Drawing.SystemColors.ControlLightLight;
this.txtID.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtID.Location = new System.Drawing.Point(116, 2);
this.txtID.Name = "txtID";
this.txtID.ReadOnly = true;
this.txtID.Size = new System.Drawing.Size(65, 20);
this.txtID.TabIndex = 100;
this.txtID.Text = "0";
this.txtID.Visible = false;
//
// label13
//
this.label13.AutoSize = true;
this.label13.Location = new System.Drawing.Point(26, 132);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(42, 14);
this.label13.TabIndex = 113;
this.label13.Text = "Ghi chú";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(26, 8);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 14);
this.label1.TabIndex = 98;
this.label1.Text = "Tiền Tệ ID";
this.label1.Visible = false;
//
// txtdonvi
//
this.txtdonvi.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtdonvi.Location = new System.Drawing.Point(414, 96);
this.txtdonvi.Mask = "9999999";
this.txtdonvi.Name = "txtdonvi";
this.txtdonvi.Size = new System.Drawing.Size(186, 20);
this.txtdonvi.TabIndex = 5;
//
// txtghichu
//
this.txtghichu.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtghichu.Location = new System.Drawing.Point(115, 132);
this.txtghichu.MaxLength = 100;
this.txtghichu.Multiline = true;
this.txtghichu.Name = "txtghichu";
this.txtghichu.Size = new System.Drawing.Size(485, 92);
this.txtghichu.TabIndex = 6;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(25, 37);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(55, 14);
this.label2.TabIndex = 99;
this.label2.Text = "Mã tiền tệ";
//
// txtbieutuong
//
this.txtbieutuong.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtbieutuong.Location = new System.Drawing.Point(115, 96);
this.txtbieutuong.MaxLength = 100;
this.txtbieutuong.Name = "txtbieutuong";
this.txtbieutuong.Size = new System.Drawing.Size(180, 20);
this.txtbieutuong.TabIndex = 2;
//
// txttenttl
//
//.........这里部分代码省略.........
示例13: InitializeComponent
/// <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(frmMyVideos));
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.lblStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.pbStatus = new System.Windows.Forms.ToolStripProgressBar();
this.lvVideos = new System.Windows.Forms.ListView();
this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
this.button1 = new System.Windows.Forms.Button();
this.btnDisable = new System.Windows.Forms.Button();
this.btnEnable = new System.Windows.Forms.Button();
this.wb = new SHDocVw.WebBrowser();
this.btnSelectAll = new System.Windows.Forms.Button();
this.btnDeselectAll = new System.Windows.Forms.Button();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.wb)).BeginInit();
this.SuspendLayout();
//
// statusStrip1
//
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblStatus,
this.pbStatus});
this.statusStrip1.Location = new System.Drawing.Point(0, 271);
this.statusStrip1.Name = "statusStrip1";
this.statusStrip1.Size = new System.Drawing.Size(667, 22);
this.statusStrip1.SizingGrip = false;
this.statusStrip1.TabIndex = 0;
this.statusStrip1.Text = "statusStrip1";
//
// lblStatus
//
this.lblStatus.Name = "lblStatus";
this.lblStatus.Size = new System.Drawing.Size(450, 17);
this.lblStatus.Spring = true;
this.lblStatus.Text = "Idle.";
this.lblStatus.TextAlign = System.Drawing.ContentAlignment.TopLeft;
//
// pbStatus
//
this.pbStatus.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.pbStatus.Name = "pbStatus";
this.pbStatus.Size = new System.Drawing.Size(200, 16);
//
// lvVideos
//
this.lvVideos.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1,
this.columnHeader2,
this.columnHeader3,
this.columnHeader4,
this.columnHeader5,
this.columnHeader6,
this.columnHeader7});
this.lvVideos.FullRowSelect = true;
this.lvVideos.Location = new System.Drawing.Point(12, 12);
this.lvVideos.Name = "lvVideos";
this.lvVideos.Size = new System.Drawing.Size(643, 220);
this.lvVideos.TabIndex = 3;
this.lvVideos.UseCompatibleStateImageBehavior = false;
this.lvVideos.View = System.Windows.Forms.View.Details;
//
// columnHeader1
//
this.columnHeader1.Text = "ID";
this.columnHeader1.Width = 70;
//
// columnHeader2
//
this.columnHeader2.Text = "Title";
this.columnHeader2.Width = 319;
//
// columnHeader3
//
this.columnHeader3.Text = "Views";
this.columnHeader3.Width = 50;
//
// columnHeader4
//
this.columnHeader4.Text = "Comments";
this.columnHeader4.Width = 50;
//
// columnHeader5
//
this.columnHeader5.Text = "Favorites";
this.columnHeader5.Width = 50;
//
// columnHeader6
//
//.........这里部分代码省略.........
示例14: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.label1 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.txtUserId = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.btnLogin = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.panel11 = new System.Windows.Forms.Panel();
this.panel2 = new System.Windows.Forms.Panel();
this.panel5 = new System.Windows.Forms.Panel();
this.panel1 = new System.Windows.Forms.Panel();
this.panel4 = new System.Windows.Forms.Panel();
this.panel2.SuspendLayout();
this.panel5.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// statusLabel
//
this.statusLabel.BackColor = System.Drawing.Color.Transparent;
this.statusLabel.Name = "statusLabel";
this.statusLabel.Size = new System.Drawing.Size(272, 17);
this.statusLabel.Text = "Masukkan User Id dan pilih Roles yang akan dipakai.";
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Location = new System.Drawing.Point(65, 32);
this.label1.Margin = new System.Windows.Forms.Padding(2);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 17);
this.label1.TabIndex = 0;
this.label1.Text = "User &Id:";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// label4
//
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.Transparent;
this.label4.Location = new System.Drawing.Point(65, 61);
this.label4.Margin = new System.Windows.Forms.Padding(2);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(67, 17);
this.label4.TabIndex = 2;
this.label4.Text = "&Password:";
this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// txtUserId
//
this.txtUserId.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.txtUserId.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtUserId.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
this.txtUserId.Location = new System.Drawing.Point(164, 29);
this.txtUserId.Margin = new System.Windows.Forms.Padding(2);
this.txtUserId.Name = "txtUserId";
this.txtUserId.Size = new System.Drawing.Size(137, 25);
this.txtUserId.TabIndex = 1;
this.txtUserId.TextChanged += new System.EventHandler(this.txtUserId_TextChanged);
this.txtUserId.Validated += new System.EventHandler(this.txtUserId_Validated);
//
// txtPassword
//
this.txtPassword.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.txtPassword.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
this.txtPassword.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.txtPassword.Location = new System.Drawing.Point(164, 58);
this.txtPassword.Margin = new System.Windows.Forms.Padding(2);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(137, 25);
this.txtPassword.TabIndex = 3;
this.txtPassword.UseSystemPasswordChar = true;
this.txtPassword.TextChanged += new System.EventHandler(this.txtPassword_TextChanged);
//
// label7
//
this.label7.BackColor = System.Drawing.Color.Transparent;
this.label7.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "SubTitleFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.label7.Font = global::QWControlCenter.Properties.Settings.Default.SubTitleFont;
this.label7.Location = new System.Drawing.Point(184, 87);
this.label7.Margin = new System.Windows.Forms.Padding(2);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(117, 34);
this.label7.TabIndex = 43;
this.label7.Text = "Password is case sensitive";
//
// btnLogin
//
this.btnLogin.DataBindings.Add(new System.Windows.Forms.Binding("Font", global::QWControlCenter.Properties.Settings.Default, "BoldFont", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
this.btnLogin.Font = global::QWControlCenter.Properties.Settings.Default.BoldFont;
this.btnLogin.Image = global::QWControlCenter.Properties.Resources.login1;
this.btnLogin.Location = new System.Drawing.Point(10, 6);
this.btnLogin.Margin = new System.Windows.Forms.Padding(1);
//.........这里部分代码省略.........
示例15: InitializeComponent
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
this.MainMenu1 = new System.Windows.Forms.MenuStrip();
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCustomer = new System.Windows.Forms.ToolStripMenuItem();
this.mnuProviders = new System.Windows.Forms.ToolStripMenuItem();
this.mnuSales = new System.Windows.Forms.ToolStripMenuItem();
this.mnuDatabase = new System.Windows.Forms.ToolStripMenuItem();
this._mnuDataAction_0 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuDataAction_1 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuDataAction_2 = new System.Windows.Forms.ToolStripSeparator();
this._mnuDataAction_3 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuClear_0 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuClear_1 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuClear_2 = new System.Windows.Forms.ToolStripSeparator();
this._mnuClear_3 = new System.Windows.Forms.ToolStripMenuItem();
this._mnuDataAction_4 = new System.Windows.Forms.ToolStripMenuItem();
this.mnuReports = new System.Windows.Forms.ToolStripMenuItem();
this.mnuReport = new System.Windows.Forms.ToolStripMenuItem();
this._lExit_1 = new System.Windows.Forms.ToolStripSeparator();
this.mnuExit = new System.Windows.Forms.ToolStripMenuItem();
this.mnuOrders = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCreateOrderRequest = new System.Windows.Forms.ToolStripMenuItem();
this.mnuOrderRequestsApproval = new System.Windows.Forms.ToolStripMenuItem();
this.lExit2 = new System.Windows.Forms.ToolStripSeparator();
this.mnuCreateOrderReception = new System.Windows.Forms.ToolStripMenuItem();
this.mnuOrderReceptionsApproval = new System.Windows.Forms.ToolStripMenuItem();
this.mnuMainInventory = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAddStockManually = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAdjustStockManually = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAccounts = new System.Windows.Forms.ToolStripMenuItem();
this.mnuProducts = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCategories = new System.Windows.Forms.ToolStripMenuItem();
this.mnuSecurity = new System.Windows.Forms.ToolStripMenuItem();
this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem();
this.mnuViewHelp = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
this.sbStatusBar = new System.Windows.Forms.StatusStrip();
this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
this._sbStatusBar_Panel2 = new System.Windows.Forms.ToolStripStatusLabel();
this._sbStatusBar_Panel3 = new System.Windows.Forms.ToolStripStatusLabel();
this.sbStatusBar.SuspendLayout();
this.SuspendLayout();
//
// MainMenu1
//
this.MainMenu1.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuFile, this.mnuOrders, this.mnuMainInventory, this.mnuAccounts, this.mnuHelp});
//
// mnuFile
//
this.mnuFile.Available = true;
this.mnuFile.Checked = false;
this.mnuFile.Enabled = true;
this.mnuFile.MergeAction = System.Windows.Forms.MergeAction.Remove;
this.mnuFile.Name = "mnuFile";
this.mnuFile.Text = "&File";
this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this.mnuCustomer, this.mnuProviders, this.mnuSales, this.mnuDatabase, this.mnuReports, this._lExit_1, this.mnuExit});
//
// mnuCustomer
//
this.mnuCustomer.Available = true;
this.mnuCustomer.Checked = false;
this.mnuCustomer.Enabled = true;
this.mnuCustomer.Name = "mnuCustomer";
this.mnuCustomer.Text = "&Manage Customers";
this.mnuCustomer.Click += new System.EventHandler(this.mnuCustomer_Click);
//
// mnuProviders
//
this.mnuProviders.Available = true;
this.mnuProviders.Checked = false;
this.mnuProviders.Enabled = true;
this.mnuProviders.Name = "mnuProviders";
this.mnuProviders.Text = "Manage Su&ppliers ";
this.mnuProviders.Click += new System.EventHandler(this.mnuProviders_Click);
//
// mnuSales
//
this.mnuSales.Available = true;
this.mnuSales.Checked = false;
this.mnuSales.Enabled = true;
this.mnuSales.Name = "mnuSales";
this.mnuSales.Text = "&Sales";
//
// mnuDatabase
//
this.mnuDatabase.Available = false;
this.mnuDatabase.Checked = false;
this.mnuDatabase.Enabled = true;
this.mnuDatabase.Name = "mnuDatabase";
this.mnuDatabase.Text = "&Database";
this.mnuDatabase.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[]{this._mnuDataAction_0, this._mnuDataAction_1, this._mnuDataAction_2, this._mnuDataAction_3, this._mnuDataAction_4});
//
// _mnuDataAction_0
//
this._mnuDataAction_0.Available = true;
this._mnuDataAction_0.Checked = false;
//.........这里部分代码省略.........