本文整理汇总了C#中System.Windows.Forms.MenuStrip类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.MenuStrip类的具体用法?C# System.Windows.Forms.MenuStrip怎么用?C# System.Windows.Forms.MenuStrip使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.MenuStrip类属于命名空间,在下文中一共展示了System.Windows.Forms.MenuStrip类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapViewer));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.renderMapAgainToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mapImage = new System.Windows.Forms.PictureBox();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.mapImage)).BeginInit();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.renderMapAgainToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(284, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// renderMapAgainToolStripMenuItem
//
this.renderMapAgainToolStripMenuItem.Name = "renderMapAgainToolStripMenuItem";
this.renderMapAgainToolStripMenuItem.Size = new System.Drawing.Size(117, 20);
this.renderMapAgainToolStripMenuItem.Text = "Render Map Again";
this.renderMapAgainToolStripMenuItem.Click += new System.EventHandler(this.renderMapAgainToolStripMenuItem_Click);
//
// mapImage
//
this.mapImage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.mapImage.Location = new System.Drawing.Point(0, 27);
this.mapImage.Name = "mapImage";
this.mapImage.Size = new System.Drawing.Size(284, 235);
this.mapImage.TabIndex = 1;
this.mapImage.TabStop = false;
this.mapImage.DoubleClick += new System.EventHandler(this.mapImage_DoubleClick);
this.mapImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.mapImage_MouseDown);
//
// MapViewer
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 262);
this.Controls.Add(this.mapImage);
this.Controls.Add(this.menuStrip1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Location = new System.Drawing.Point(50, 50);
this.MainMenuStrip = this.menuStrip1;
this.Name = "MapViewer";
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Map Viewer";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.mapImage)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
开发者ID:frkdom,项目名称:Region-Editor-2015,代码行数:64,代码来源:MapViewer.designer.cs
示例2: 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(MP));
this.menu = new System.Windows.Forms.MenuStrip();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// menu
//
this.menu.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.menu.Font = new System.Drawing.Font("Segoe UI", 11F, System.Drawing.FontStyle.Bold);
this.menu.Location = new System.Drawing.Point(0, 0);
this.menu.Name = "menu";
this.menu.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.menu.Size = new System.Drawing.Size(631, 24);
this.menu.TabIndex = 0;
this.menu.Text = "menuStrip1";
//
// pictureBox1
//
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBox1.Image = global::HForms.Properties.Resources.Bg;
this.pictureBox1.Location = new System.Drawing.Point(0, 24);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(631, 398);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// MP
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.LemonChiffon;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(631, 422);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.menu);
this.MainMenuStrip = this.menu;
this.Name = "MP";
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
this.RightToLeftLayout = true;
this.Text = "الصفحة الرئيسية";
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MP_FormClosed);
this.Load += new System.EventHandler(this.MP_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
开发者ID:hshProject,项目名称:FinalModule,代码行数:55,代码来源:MP.designer.cs
示例3: 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(frmMain));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.importToolStripMenuItem,
this.exportToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(799, 24);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// importToolStripMenuItem
//
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
this.importToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.importToolStripMenuItem.Text = "Import";
this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
//
// exportToolStripMenuItem
//
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
this.exportToolStripMenuItem.Size = new System.Drawing.Size(51, 20);
this.exportToolStripMenuItem.Text = "Export";
this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(799, 582);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "frmMain";
this.Text = "CSV_import_export";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
开发者ID:charlesduprey,项目名称:GestInfirmerie,代码行数:54,代码来源:frmMain.designer.cs
示例4: InitializeComponent
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.加载子窗体ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.水平平铺ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.加载子窗体ToolStripMenuItem,
this.水平平铺ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(378, 25);
this.menuStrip1.TabIndex = 1;
this.menuStrip1.Text = "menuStrip1";
//
// 加载子窗体ToolStripMenuItem
//
this.加载子窗体ToolStripMenuItem.Name = "加载子窗体ToolStripMenuItem";
this.加载子窗体ToolStripMenuItem.Size = new System.Drawing.Size(80, 21);
this.加载子窗体ToolStripMenuItem.Text = "加载子窗体";
this.加载子窗体ToolStripMenuItem.Click += new System.EventHandler(this.加载子窗体ToolStripMenuItem_Click);
//
// 水平平铺ToolStripMenuItem
//
this.水平平铺ToolStripMenuItem.Name = "水平平铺ToolStripMenuItem";
this.水平平铺ToolStripMenuItem.Size = new System.Drawing.Size(68, 21);
this.水平平铺ToolStripMenuItem.Text = "水平平铺";
this.水平平铺ToolStripMenuItem.Click += new System.EventHandler(this.水平平铺ToolStripMenuItem_Click);
//
// Frm_Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(378, 209);
this.Controls.Add(this.menuStrip1);
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "Frm_Main";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "对子窗体进行水平排列";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
开发者ID:TGHGH,项目名称:C-1200,代码行数:53,代码来源:Frm_Main.designer.cs
示例5: 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(MainForm));
this.stopButton = new System.Windows.Forms.Button();
this.backRightButton = new System.Windows.Forms.Button();
this.backButton = new System.Windows.Forms.Button();
this.backLeftButton = new System.Windows.Forms.Button();
this.turnLeftButton = new System.Windows.Forms.Button();
this.turnRightButton = new System.Windows.Forms.Button();
this.forwardRightButton = new System.Windows.Forms.Button();
this.forwardButton = new System.Windows.Forms.Button();
this.forwardLeftButton = new System.Windows.Forms.Button();
this.statusStrip = new System.Windows.Forms.StatusStrip();
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileMenu = new System.Windows.Forms.ToolStripMenuItem();
this.menuDivider1 = new System.Windows.Forms.ToolStripSeparator();
this.exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.connectionMenu = new System.Windows.Forms.ToolStripMenuItem();
this.connectMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.livePanel = new System.Windows.Forms.Panel();
this.messageBox = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button5 = new System.Windows.Forms.Button();
this.button6 = new System.Windows.Forms.Button();
this.speedBar = new System.Windows.Forms.TrackBar();
this.btCamera = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.statusStrip.SuspendLayout();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.speedBar)).BeginInit();
this.SuspendLayout();
//
// stopButton
//
this.stopButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.stopButton.Image = ((System.Drawing.Image)(resources.GetObject("stopButton.Image")));
this.stopButton.Location = new System.Drawing.Point(793, 69);
this.stopButton.Name = "stopButton";
this.stopButton.Size = new System.Drawing.Size(40, 37);
this.stopButton.TabIndex = 22;
this.stopButton.Tag = "0";
this.stopButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
//
// backRightButton
//
this.backRightButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.backRightButton.Image = ((System.Drawing.Image)(resources.GetObject("backRightButton.Image")));
this.backRightButton.Location = new System.Drawing.Point(841, 114);
this.backRightButton.Name = "backRightButton";
this.backRightButton.Size = new System.Drawing.Size(40, 37);
this.backRightButton.TabIndex = 21;
this.backRightButton.Tag = "8";
this.backRightButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
this.backRightButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
//
// backButton
//
this.backButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.backButton.Image = ((System.Drawing.Image)(resources.GetObject("backButton.Image")));
this.backButton.Location = new System.Drawing.Point(793, 114);
this.backButton.Name = "backButton";
this.backButton.Size = new System.Drawing.Size(40, 37);
this.backButton.TabIndex = 20;
this.backButton.Tag = "6";
this.backButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
this.backButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
//
// backLeftButton
//
this.backLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.backLeftButton.Image = ((System.Drawing.Image)(resources.GetObject("backLeftButton.Image")));
this.backLeftButton.Location = new System.Drawing.Point(745, 114);
this.backLeftButton.Name = "backLeftButton";
this.backLeftButton.Size = new System.Drawing.Size(40, 37);
this.backLeftButton.TabIndex = 19;
this.backLeftButton.Tag = "7";
this.backLeftButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
this.backLeftButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
//
// turnLeftButton
//
this.turnLeftButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.turnLeftButton.Image = ((System.Drawing.Image)(resources.GetObject("turnLeftButton.Image")));
this.turnLeftButton.Location = new System.Drawing.Point(745, 69);
this.turnLeftButton.Name = "turnLeftButton";
this.turnLeftButton.Size = new System.Drawing.Size(40, 37);
this.turnLeftButton.TabIndex = 18;
this.turnLeftButton.Tag = "4";
this.turnLeftButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.driveButton_Click);
this.turnLeftButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.backRightButton_MouseUp);
//
// turnRightButton
//.........这里部分代码省略.........
开发者ID:tkram01,项目名称:see3po,代码行数:101,代码来源:MainForm.designer.cs
示例6: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.menuVentanaPrincipal = new System.Windows.Forms.MenuStrip();
this.cuentasToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.asientosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.crearAsientoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.verAsientosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cierresContablesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.reportesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aBalanceDeComprobaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.estadoDeResultadosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.balanceGeneralToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sociosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ingresarNuevoSocioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.verSocioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.configuraciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.serviciosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.agregarServicioToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.lblEmpresa = new System.Windows.Forms.Label();
this.logoBox = new System.Windows.Forms.PictureBox();
this.lblCedula = new System.Windows.Forms.Label();
this.lblTel = new System.Windows.Forms.Label();
this.lblF = new System.Windows.Forms.Label();
this.proyectosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.agregarProyectosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.verProyectosToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuVentanaPrincipal.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.logoBox)).BeginInit();
this.SuspendLayout();
//
// menuVentanaPrincipal
//
this.menuVentanaPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cuentasToolStripMenuItem,
this.asientosToolStripMenuItem,
this.cierresContablesToolStripMenuItem,
this.reportesToolStripMenuItem,
this.sociosToolStripMenuItem,
this.proyectosToolStripMenuItem,
this.serviciosToolStripMenuItem,
this.configuraciónToolStripMenuItem});
this.menuVentanaPrincipal.Location = new System.Drawing.Point(0, 0);
this.menuVentanaPrincipal.Name = "menuVentanaPrincipal";
this.menuVentanaPrincipal.Size = new System.Drawing.Size(720, 24);
this.menuVentanaPrincipal.TabIndex = 0;
this.menuVentanaPrincipal.Text = "menuStrip1";
//
// cuentasToolStripMenuItem
//
this.cuentasToolStripMenuItem.Name = "cuentasToolStripMenuItem";
this.cuentasToolStripMenuItem.Size = new System.Drawing.Size(62, 20);
this.cuentasToolStripMenuItem.Text = "Cuentas";
this.cuentasToolStripMenuItem.Click += new System.EventHandler(this.cuentasToolStripMenuItem_Click);
//
// asientosToolStripMenuItem
//
this.asientosToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.crearAsientoToolStripMenuItem,
this.verAsientosToolStripMenuItem});
this.asientosToolStripMenuItem.Name = "asientosToolStripMenuItem";
this.asientosToolStripMenuItem.Size = new System.Drawing.Size(64, 20);
this.asientosToolStripMenuItem.Text = "Asientos";
//
// crearAsientoToolStripMenuItem
//
this.crearAsientoToolStripMenuItem.Name = "crearAsientoToolStripMenuItem";
this.crearAsientoToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.crearAsientoToolStripMenuItem.Text = "Crear Asiento";
this.crearAsientoToolStripMenuItem.Click += new System.EventHandler(this.crearAsientoToolStripMenuItem_Click);
//
// verAsientosToolStripMenuItem
//
this.verAsientosToolStripMenuItem.Name = "verAsientosToolStripMenuItem";
this.verAsientosToolStripMenuItem.Size = new System.Drawing.Size(145, 22);
this.verAsientosToolStripMenuItem.Text = "Ver Asientos";
this.verAsientosToolStripMenuItem.Click += new System.EventHandler(this.verAsientosToolStripMenuItem_Click);
//
// cierresContablesToolStripMenuItem
//
this.cierresContablesToolStripMenuItem.Name = "cierresContablesToolStripMenuItem";
this.cierresContablesToolStripMenuItem.Size = new System.Drawing.Size(101, 20);
this.cierresContablesToolStripMenuItem.Text = "Cierre Contable";
this.cierresContablesToolStripMenuItem.Click += new System.EventHandler(this.cierresContablesToolStripMenuItem_Click);
//
// reportesToolStripMenuItem
//
this.reportesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.aBalanceDeComprobaciónToolStripMenuItem,
this.estadoDeResultadosToolStripMenuItem,
this.balanceGeneralToolStripMenuItem});
this.reportesToolStripMenuItem.Name = "reportesToolStripMenuItem";
this.reportesToolStripMenuItem.Size = new System.Drawing.Size(65, 20);
this.reportesToolStripMenuItem.Text = "Reportes";
//
// aBalanceDeComprobaciónToolStripMenuItem
//
//.........这里部分代码省略.........
开发者ID:Alegt,项目名称:ProyectoSIA,代码行数:101,代码来源:VentanaPrincipal.designer.cs
示例7: 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WelcomeForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.manageUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.changePsswordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.databaseManagementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.createBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restoreBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.startNewYearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.initializeDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.createDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.registerTrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.unRegisterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.userHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.troubleshootingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.systemLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutEBusinessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btnPOS = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
this.btnInvoice = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btnStock = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btnItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.btnCustomer = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.btnCompany = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.btnOrder = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.btnShop = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
this.toolStrip_Reports = new System.Windows.Forms.ToolStrip();
this.btnSalesReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
this.btnPurchaseReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.btnDailySalesReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
this.btnBuyerLedgerReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
this.btnCustomerTransaction = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
this.btnCompanyTransaction = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
this.btnProfitReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.btnCurrentCashReport = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.btnItemTransaction = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
this.panel2 = new System.Windows.Forms.Panel();
this.middlePanel = new System.Windows.Forms.Panel();
this.lblSologon = new System.Windows.Forms.Label();
this.lbRegistrationNo = new System.Windows.Forms.Label();
this.lblPhoneNumber = new System.Windows.Forms.Label();
this.lblAdress = new System.Windows.Forms.Label();
this.panelToday = new System.Windows.Forms.Panel();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.lvSale = new System.Windows.Forms.ListView();
this.colSNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colRNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colCustomer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colPayment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.label2 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.lvPurchase = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.label6 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.panelClock = new System.Windows.Forms.Panel();
this.lvStockSummary = new System.Windows.Forms.ListView();
this.colItem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colStock = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colOnOrder = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.colLimit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.btnRefresh = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
//.........这里部分代码省略.........
开发者ID:iMutex,项目名称:EBusiness,代码行数:101,代码来源:WelcomeForm.designer.cs
示例8: 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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainAssets));
this.listBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.assetsDataSet1 = new WWassets.assetsDataSet1();
this.assetsGB = new System.Windows.Forms.GroupBox();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.panel5 = new System.Windows.Forms.Panel();
this.assetsListBox = new System.Windows.Forms.ListBox();
this.panel4 = new System.Windows.Forms.Panel();
this.notificationlbl = new System.Windows.Forms.Label();
this.personPCRB = new System.Windows.Forms.RadioButton();
this.miscPCRB = new System.Windows.Forms.RadioButton();
this.panel3 = new System.Windows.Forms.Panel();
this.serialrb = new System.Windows.Forms.RadioButton();
this.firstnameRB = new System.Windows.Forms.RadioButton();
this.lastnameRB = new System.Windows.Forms.RadioButton();
this.miscnamerb = new System.Windows.Forms.RadioButton();
this.assetsearchtb = new System.Windows.Forms.TextBox();
this.panel2 = new System.Windows.Forms.Panel();
this.textBox1 = new System.Windows.Forms.TextBox();
this.miscnamelbl = new System.Windows.Forms.Label();
this.addAssetBTN = new System.Windows.Forms.Button();
this.lNameTB = new System.Windows.Forms.TextBox();
this.firstNameLbl = new System.Windows.Forms.Label();
this.tagLbl = new System.Windows.Forms.Label();
this.computerNameTB = new System.Windows.Forms.TextBox();
this.costcentertb = new System.Windows.Forms.TextBox();
this.productKeyTB = new System.Windows.Forms.TextBox();
this.locationcb = new System.Windows.Forms.ComboBox();
this.dateInServiceTB = new System.Windows.Forms.TextBox();
this.departmentcb = new System.Windows.Forms.ComboBox();
this.formfactorcb = new System.Windows.Forms.ComboBox();
this.fNameTB = new System.Windows.Forms.TextBox();
this.lNameLbl = new System.Windows.Forms.Label();
this.pricetb = new System.Windows.Forms.TextBox();
this.tagNumTB = new System.Windows.Forms.TextBox();
this.makeLbl = new System.Windows.Forms.Label();
this.modelLbl = new System.Windows.Forms.Label();
this.serialLbl = new System.Windows.Forms.Label();
this.formfactorlbl = new System.Windows.Forms.Label();
this.makeTB = new System.Windows.Forms.TextBox();
this.serialTB = new System.Windows.Forms.TextBox();
this.modelTB = new System.Windows.Forms.TextBox();
this.pricelbl = new System.Windows.Forms.Label();
this.locationlbl = new System.Windows.Forms.Label();
this.costcenterlbl = new System.Windows.Forms.Label();
this.departmentlbl = new System.Windows.Forms.Label();
this.dateInServiceLbl = new System.Windows.Forms.Label();
this.productKeyLbl = new System.Windows.Forms.Label();
this.computerNameLbl = new System.Windows.Forms.Label();
this.userInfoTA = new WWassets.assetsDataSet1TableAdapters.userInfoTA();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.getHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.listTableAdapter1 = new WWassets.assetsDataSetTableAdapters.listTableAdapter();
((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).BeginInit();
this.assetsGB.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.panel5.SuspendLayout();
this.panel4.SuspendLayout();
this.panel3.SuspendLayout();
this.panel2.SuspendLayout();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// listBindingSource
//
this.listBindingSource.DataMember = "list";
this.listBindingSource.DataSource = this.assetsDataSet1;
//
// assetsDataSet1
//
this.assetsDataSet1.DataSetName = "assetsDataSet1";
this.assetsDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
//
// assetsGB
//
this.assetsGB.Controls.Add(this.splitContainer1);
this.assetsGB.Dock = System.Windows.Forms.DockStyle.Fill;
this.assetsGB.Location = new System.Drawing.Point(0, 24);
this.assetsGB.Name = "assetsGB";
this.assetsGB.Size = new System.Drawing.Size(556, 606);
this.assetsGB.TabIndex = 1;
this.assetsGB.TabStop = false;
//
// splitContainer1
//
//.........这里部分代码省略.........
开发者ID:AustinSkarphol,项目名称:WallworkProjects,代码行数:101,代码来源:mainAssets.Designer+(AustinWorkd-PC's+conflicted+copy+2013-02-18).cs
示例9: InitializeComponent
//.........这里部分代码省略.........
this.room204Button = new System.Windows.Forms.Button();
this.room202Button = new System.Windows.Forms.Button();
this.room203Button = new System.Windows.Forms.Button();
this.room201Button = new System.Windows.Forms.Button();
this.label19 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.tabPage4 = new System.Windows.Forms.TabPage();
this.tabPage5 = new System.Windows.Forms.TabPage();
this.label16 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.checkOutDateTimePicker = new System.Windows.Forms.DateTimePicker();
this.checkInDateTimePicker = new System.Windows.Forms.DateTimePicker();
this.label3 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.checkAvailabilityButton = new System.Windows.Forms.Button();
this.clearButton = new System.Windows.Forms.Button();
this.roomLevelComboBox = new System.Windows.Forms.ComboBox();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.roomTypeComboBox = new System.Windows.Forms.ComboBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.clearNamesButton = new System.Windows.Forms.Button();
this.lastNameTextBox = new System.Windows.Forms.TextBox();
this.firstNameTextBox = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.retrieveBookingButton = new System.Windows.Forms.Button();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.label17 = new System.Windows.Forms.Label();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.programmingManualToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage4);
this.tabControl1.Controls.Add(this.tabPage5);
this.tabControl1.Location = new System.Drawing.Point(11, 199);
this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(639, 377);
this.tabControl1.TabIndex = 92;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.label12);
开发者ID:soniarai,项目名称:HRS,代码行数:67,代码来源:Welcome.designer.cs
示例10: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Windows.Forms.SplitContainer splitContainer1;
System.Windows.Forms.SplitContainer splitContainer2;
System.Windows.Forms.MenuStrip mainMenuStrip;
System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
System.Windows.Forms.ToolStripSeparator toolStripMenuItem2;
System.Windows.Forms.ToolStripSeparator toolStripMenuItem3;
System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
this.pictureBox = new System.Windows.Forms.PictureBox();
this.treeViewSubTextures = new System.Windows.Forms.TreeView();
this.toolStripSubTextures = new System.Windows.Forms.ToolStrip();
this.toolStripSubTextureAdd = new System.Windows.Forms.ToolStripButton();
this.toolStripSubTextureRemove = new System.Windows.Forms.ToolStripButton();
this.propertyGrid = new System.Windows.Forms.PropertyGrid();
this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
this.addTextureDialog = new System.Windows.Forms.OpenFileDialog();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.packToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
splitContainer1 = new System.Windows.Forms.SplitContainer();
splitContainer2 = new System.Windows.Forms.SplitContainer();
mainMenuStrip = new System.Windows.Forms.MenuStrip();
fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
splitContainer1.Panel1.SuspendLayout();
splitContainer1.Panel2.SuspendLayout();
splitContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
splitContainer2.Panel1.SuspendLayout();
splitContainer2.Panel2.SuspendLayout();
splitContainer2.SuspendLayout();
this.toolStripSubTextures.SuspendLayout();
mainMenuStrip.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer1.Location = new System.Drawing.Point(0, 25);
splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
splitContainer1.Panel1.AutoScroll = true;
splitContainer1.Panel1.Controls.Add(this.pictureBox);
splitContainer1.Panel1.SizeChanged += new System.EventHandler(this.LeftPanel_SizeChanged);
//
// splitContainer1.Panel2
//
splitContainer1.Panel2.Controls.Add(splitContainer2);
splitContainer1.Size = new System.Drawing.Size(608, 373);
splitContainer1.SplitterDistance = 309;
splitContainer1.TabIndex = 0;
splitContainer1.TabStop = false;
//
// pictureBox
//
this.pictureBox.Location = new System.Drawing.Point(0, 0);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(0, 0);
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
//
// splitContainer2
//
splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
splitContainer2.Location = new System.Drawing.Point(0, 0);
splitContainer2.Name = "splitContainer2";
splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
//
// splitContainer2.Panel1
//
splitContainer2.Panel1.Controls.Add(this.treeViewSubTextures);
splitContainer2.Panel1.Controls.Add(this.toolStripSubTextures);
//
// splitContainer2.Panel2
//
splitContainer2.Panel2.Controls.Add(this.propertyGrid);
splitContainer2.Size = new System.Drawing.Size(293, 371);
splitContainer2.SplitterDistance = 150;
splitContainer2.TabIndex = 0;
//.........这里部分代码省略.........
开发者ID:galaxyyao,项目名称:TouhouGrave,代码行数:101,代码来源:Main.Designer.cs
示例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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmABCDebugger));
this.txtDebugText = new System.Windows.Forms.TextBox();
this.mnuMain = new System.Windows.Forms.MenuStrip();
this.tsmiOption = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiSoundScore = new System.Windows.Forms.ToolStripMenuItem();
this.timAutoScroll = new System.Windows.Forms.Timer(this.components);
this.sstMain = new System.Windows.Forms.StatusStrip();
this.pnlBottom = new System.Windows.Forms.Panel();
this.pnlBottomRight = new System.Windows.Forms.Panel();
this.dgvPartData = new System.Windows.Forms.DataGridView();
this.pnlBottomLeft = new System.Windows.Forms.Panel();
this.panel1 = new System.Windows.Forms.Panel();
this.pnlMain = new System.Windows.Forms.Panel();
this.pnlScore = new System.Windows.Forms.Panel();
this.picMain = new System.Windows.Forms.PictureBox();
this.pnlKeyBord = new System.Windows.Forms.Panel();
this.picKeyBord = new System.Windows.Forms.PictureBox();
this.tsMain = new System.Windows.Forms.ToolStrip();
this.txbtnStop = new System.Windows.Forms.ToolStripButton();
this.tsbtnPause = new System.Windows.Forms.ToolStripButton();
this.tsbtnStart = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.tslblTime = new System.Windows.Forms.ToolStripLabel();
this.mnuMain.SuspendLayout();
this.pnlBottom.SuspendLayout();
this.pnlBottomRight.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvPartData)).BeginInit();
this.pnlBottomLeft.SuspendLayout();
this.pnlMain.SuspendLayout();
this.pnlScore.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picMain)).BeginInit();
this.pnlKeyBord.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picKeyBord)).BeginInit();
this.tsMain.SuspendLayout();
this.SuspendLayout();
//
// txtDebugText
//
this.txtDebugText.Location = new System.Drawing.Point(4, 4);
this.txtDebugText.Multiline = true;
this.txtDebugText.Name = "txtDebugText";
this.txtDebugText.Size = new System.Drawing.Size(196, 34);
this.txtDebugText.TabIndex = 0;
//
// mnuMain
//
this.mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiOption});
this.mnuMain.Location = new System.Drawing.Point(0, 0);
this.mnuMain.Name = "mnuMain";
this.mnuMain.Size = new System.Drawing.Size(831, 26);
this.mnuMain.TabIndex = 1;
this.mnuMain.Text = "menuStrip1";
//
// tsmiOption
//
this.tsmiOption.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiSoundScore});
this.tsmiOption.Name = "tsmiOption";
this.tsmiOption.Size = new System.Drawing.Size(80, 22);
this.tsmiOption.Text = "オプション";
//
// tsmiSoundScore
//
this.tsmiSoundScore.Name = "tsmiSoundScore";
this.tsmiSoundScore.Size = new System.Drawing.Size(100, 22);
this.tsmiSoundScore.Text = "音源";
//
// timAutoScroll
//
this.timAutoScroll.Interval = 1;
this.timAutoScroll.Tick += new System.EventHandler(this.timAutoScroll_Tick);
//
// sstMain
//
this.sstMain.Location = new System.Drawing.Point(0, 503);
this.sstMain.Name = "sstMain";
this.sstMain.Size = new System.Drawing.Size(831, 22);
this.sstMain.TabIndex = 6;
this.sstMain.Text = "statusStrip1";
//
// pnlBottom
//
this.pnlBottom.Controls.Add(this.pnlBottomRight);
this.pnlBottom.Controls.Add(this.pnlBottomLeft);
this.pnlBottom.Controls.Add(this.panel1);
this.pnlBottom
|
请发表评论