本文整理汇总了C#中System.Windows.Forms.ToolStripSeparator类的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ToolStripSeparator类的具体用法?C# System.Windows.Forms.ToolStripSeparator怎么用?C# System.Windows.Forms.ToolStripSeparator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
System.Windows.Forms.ToolStripSeparator类属于命名空间,在下文中一共展示了System.Windows.Forms.ToolStripSeparator类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NotifyIconWrapper));
this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.ContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.VisibleMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CollapsedMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ExitMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Separator = new System.Windows.Forms.ToolStripSeparator();
this.ContextMenuStrip.SuspendLayout();
//
// NotifyIcon
//
this.NotifyIcon.ContextMenuStrip = this.ContextMenuStrip;
this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
this.NotifyIcon.Text = "FluidLauncher";
this.NotifyIcon.Visible = true;
//
// ContextMenuStrip
//
this.ContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.VisibleMenu,
this.CollapsedMenu,
this.Separator,
this.ExitMenu});
this.ContextMenuStrip.Name = "ContextMenuStrip";
this.ContextMenuStrip.Size = new System.Drawing.Size(111, 70);
//
// VisibleMenu
//
this.VisibleMenu.Name = "VisibleMenu";
this.VisibleMenu.Size = new System.Drawing.Size(110, 22);
this.VisibleMenu.Text = "表示";
//
// CollapsedMenu
//
this.CollapsedMenu.Name = "CollapsedMenu";
this.CollapsedMenu.Size = new System.Drawing.Size(110, 22);
this.CollapsedMenu.Text = "非表示";
//
// ExitMenu
//
this.ExitMenu.Name = "ExitMenu";
this.ExitMenu.Size = new System.Drawing.Size(110, 22);
this.ExitMenu.Text = "終了";
//
// Separator
//
this.Separator.Name = "Separator";
this.Separator.Size = new System.Drawing.Size(6, 6);
this.ContextMenuStrip.ResumeLayout(false);
}
示例2: InitialiseComponents
private void InitialiseComponents()
{
this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CloseMenuItem.Text = "Close";
this.ShowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ShowMenuItem.Text = "Show";
this.ShowSummaryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ShowSummaryMenuItem.Text = "Summary";
this.SettingsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsMenuItem.Text = "Settings";
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripComboBox1 = new System.Windows.Forms.ToolStripComboBox();
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
this.IconContextMenuStrip = new System.Windows.Forms.ContextMenuStrip();
this.NotificationIcon = new System.Windows.Forms.NotifyIcon();
//
//notofication icon
//
this.NotificationIcon.Icon = ( (System.Drawing.Icon)( Resources.TaskBarIcon ) );
this.NotificationIcon.Text = "WorkReportReminder";
this.NotificationIcon.Visible = true;
this.NotificationIcon.ContextMenuStrip = this.IconContextMenuStrip;
this.NotificationIcon.DoubleClick += new System.EventHandler(this.OnNotificationIconDoubleClick);
//
// IconContextMenuStrip
//
this.IconContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[]
{
this.ShowMenuItem,
this.ShowSummaryMenuItem,
this.SettingsMenuItem,
this.CloseMenuItem
});
this.IconContextMenuStrip.Name = "IconContextMenuStrip";
this.IconContextMenuStrip.Size = new System.Drawing.Size(182, 124);
this.IconContextMenuStrip.ResumeLayout(false);
this.IconContextMenuStrip.PerformLayout();
}
示例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.Windows.Forms.ToolStripSeparator tssSep1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccountListForm));
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.dgvAccounts = new System.Windows.Forms.DataGridView();
this.Type = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Balance = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.IsHidden = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tsAccounts = new System.Windows.Forms.ToolStrip();
this.tsbNewDebitAccount = new System.Windows.Forms.ToolStripButton();
this.tsbNewCreditAccount = new System.Windows.Forms.ToolStripButton();
this.tsbEdit = new System.Windows.Forms.ToolStripButton();
this.tsbBalance = new System.Windows.Forms.ToolStripButton();
this.tsbDelete = new System.Windows.Forms.ToolStripButton();
this.tsbClose = new System.Windows.Forms.ToolStripButton();
tssSep1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvAccounts)).BeginInit();
this.tsAccounts.SuspendLayout();
this.SuspendLayout();
//
// tssSep1
//
tssSep1.Name = "tssSep1";
resources.ApplyResources(tssSep1, "tssSep1");
//
// toolStripContainer1
//
this.toolStripContainer1.BottomToolStripPanelVisible = false;
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(this.dgvAccounts);
resources.ApplyResources(this.toolStripContainer1.ContentPanel, "toolStripContainer1.ContentPanel");
resources.ApplyResources(this.toolStripContainer1, "toolStripContainer1");
this.toolStripContainer1.LeftToolStripPanelVisible = false;
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.RightToolStripPanelVisible = false;
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.tsAccounts);
//
// dgvAccounts
//
this.dgvAccounts.AllowUserToAddRows = false;
this.dgvAccounts.AllowUserToDeleteRows = false;
this.dgvAccounts.AllowUserToResizeColumns = false;
this.dgvAccounts.AllowUserToResizeRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
this.dgvAccounts.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.dgvAccounts.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgvAccounts.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.dgvAccounts.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvAccounts.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Type,
this.Title,
this.Balance,
this.IsHidden});
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
this.dgvAccounts.DefaultCellStyle = dataGridViewCellStyle3;
resources.ApplyResources(this.dgvAccounts, "dgvAccounts");
this.dgvAccounts.MultiSelect = false;
this.dgvAccounts.Name = "dgvAccounts";
this.dgvAccounts.ReadOnly = true;
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgvAccounts.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
this.dgvAccounts.RowHeadersVisible = false;
this.dgvAccounts.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
//.........这里部分代码省略.........
示例4: InitializeComponent
//.........这里部分代码省略.........
this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.direc = new System.Windows.Forms.TextBox();
this.ctactename = new System.Windows.Forms.TextBox();
this.nmruc = new System.Windows.Forms.TextBox();
this.panel1 = new System.Windows.Forms.Panel();
this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
this.cbo_incprec = new System.Windows.Forms.ComboBox();
this.label20 = new System.Windows.Forms.Label();
this.lbltitulo = new System.Windows.Forms.Label();
this.label41 = new System.Windows.Forms.Label();
this.tipimptotasa = new System.Windows.Forms.ComboBox();
this.fechdoc = new System.Windows.Forms.DateTimePicker();
this.moneda = new System.Windows.Forms.ComboBox();
this.label2 = new System.Windows.Forms.Label();
this.numdoc = new System.Windows.Forms.TextBox();
this.tcamb = new System.Windows.Forms.TextBox();
this.tipodoc = new System.Windows.Forms.ComboBox();
this.serdoc = new System.Windows.Forms.TextBox();
this.label21 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label13 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label15 = new System.Windows.Forms.Label();
this.label16 = new System.Windows.Forms.Label();
this.Botonera = new System.Windows.Forms.ToolStrip();
this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
this.btn_editar = new System.Windows.Forms.ToolStripButton();
this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
this.btn_grabar = new System.Windows.Forms.ToolStripButton();
this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btn_primero = new System.Windows.Forms.ToolStripButton();
this.btn_anterior = new System.Windows.Forms.ToolStripButton();
this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
this.btn_clave = new System.Windows.Forms.ToolStripButton();
this.btn_log = new System.Windows.Forms.ToolStripButton();
this.btn_upload = new System.Windows.Forms.ToolStripButton();
this.btn_salir = new System.Windows.Forms.ToolStripButton();
this.btn_information = new System.Windows.Forms.ToolStripButton();
this.tipoclieprov = new System.Windows.Forms.Label();
this.lblruc = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
this.pdtimagen = new System.Windows.Forms.PictureBox();
this.lstListaprec = new System.Windows.Forms.ComboBox();
this.label22 = new System.Windows.Forms.Label();
this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
this.canticombo = new DevExpress.XtraEditors.SpinEdit();
this.label26 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.preccombo = new System.Windows.Forms.TextBox();
this.princombo = new System.Windows.Forms.CheckBox();
this.glosa = new System.Windows.Forms.TextBox();
this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
示例5: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
this.designPresenter = new Dataweb.NShape.WinFormsUI.DesignPresenter();
this.designController = new Dataweb.NShape.Controllers.DesignController();
this.toolStrip2 = new System.Windows.Forms.ToolStrip();
this.designsComboBox = new System.Windows.Forms.ToolStripComboBox();
this.activateButton = new System.Windows.Forms.ToolStripButton();
this.designsSeparator = new System.Windows.Forms.ToolStripSeparator();
this.newDesignButton = new System.Windows.Forms.ToolStripButton();
this.deleteDesignButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.createStyleButton = new System.Windows.Forms.ToolStripButton();
this.deleteStyleButton = new System.Windows.Forms.ToolStripButton();
this.panel1 = new System.Windows.Forms.Panel();
this.closeButton = new System.Windows.Forms.Button();
this.toolStripContainer1.ContentPanel.SuspendLayout();
this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
this.toolStripContainer1.SuspendLayout();
this.toolStrip2.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// toolStripContainer1
//
//
// toolStripContainer1.ContentPanel
//
this.toolStripContainer1.ContentPanel.Controls.Add(this.designPresenter);
this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(661, 372);
this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
this.toolStripContainer1.Name = "toolStripContainer1";
this.toolStripContainer1.Size = new System.Drawing.Size(661, 397);
this.toolStripContainer1.TabIndex = 7;
this.toolStripContainer1.Text = "toolStripContainer1";
//
// toolStripContainer1.TopToolStripPanel
//
this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.toolStrip2);
//
// designPresenter
//
this.designPresenter.DesignController = this.designController;
this.designPresenter.Dock = System.Windows.Forms.DockStyle.Fill;
this.designPresenter.FocusBorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(245)))), ((int)(((byte)(245)))), ((int)(((byte)(220)))));
this.designPresenter.FocusedItemColor = System.Drawing.Color.Beige;
this.designPresenter.HighlightedItemColor = System.Drawing.SystemColors.ControlLightLight;
this.designPresenter.HighlightItems = true;
this.designPresenter.InactiveItemBackgroundColor = System.Drawing.SystemColors.Control;
this.designPresenter.InactiveItemBorderColor = System.Drawing.SystemColors.Window;
this.designPresenter.InactiveItemTextColor = System.Drawing.SystemColors.ControlDarkDark;
this.designPresenter.Location = new System.Drawing.Point(0, 0);
this.designPresenter.Name = "designPresenter";
this.designPresenter.SelectedDesign = null;
this.designPresenter.SelectedItemColor = System.Drawing.SystemColors.Window;
this.designPresenter.SelectedItemTextColor = System.Drawing.SystemColors.ControlText;
this.designPresenter.SelectedStyleCategory = Dataweb.NShape.StyleCategory.CapStyle;
this.designPresenter.Size = new System.Drawing.Size(661, 372);
this.designPresenter.TabIndex = 0;
//
// designController
//
this.designController.Project = null;
//
// toolStrip2
//
this.toolStrip2.Dock = System.Windows.Forms.DockStyle.None;
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.designsComboBox,
this.activateButton,
this.designsSeparator,
this.newDesignButton,
this.deleteDesignButton,
this.toolStripSeparator1,
this.createStyleButton,
this.deleteStyleButton});
this.toolStrip2.Location = new System.Drawing.Point(3, 0);
this.toolStrip2.Name = "toolStrip2";
this.toolStrip2.Size = new System.Drawing.Size(544, 25);
this.toolStrip2.TabIndex = 1;
//
// designsComboBox
//
this.designsComboBox.Name = "designsComboBox";
this.designsComboBox.Size = new System.Drawing.Size(121, 25);
this.designsComboBox.SelectedIndexChanged += new System.EventHandler(this.designsComboBox_SelectedIndexChanged);
//
// activateButton
//
this.activateButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.activateButton.Image = global::Dataweb.NShape.WinFormsUI.Properties.Resources.ActivateDesign;
this.activateButton.ImageTransparentColor = System.Drawing.Color.Fuchsia;
this.activateButton.Name = "activateButton";
this.activateButton.Size = new System.Drawing.Size(23, 22);
this.activateButton.Text = "Activate";
//.........这里部分代码省略.........
示例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.components = new System.ComponentModel.Container();
System.Windows.Forms.ToolStripSeparator subSep;
System.Windows.Forms.ToolStripLabel toolStripLabel2;
System.Windows.Forms.ToolStripLabel toolStripLabel3;
System.Windows.Forms.ToolStripLabel toolStripLabel1;
WeifenLuo.WinFormsUI.Docking.DockPanelSkin dockPanelSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPanelSkin();
WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin autoHideStripSkin1 = new WeifenLuo.WinFormsUI.Docking.AutoHideStripSkin();
WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient1 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin dockPaneStripSkin1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripSkin();
WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient dockPaneStripGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient2 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient2 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient3 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient dockPaneStripToolWindowGradient1 = new WeifenLuo.WinFormsUI.Docking.DockPaneStripToolWindowGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient4 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient5 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.DockPanelGradient dockPanelGradient3 = new WeifenLuo.WinFormsUI.Docking.DockPanelGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient6 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
WeifenLuo.WinFormsUI.Docking.TabGradient tabGradient7 = new WeifenLuo.WinFormsUI.Docking.TabGradient();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextureViewer));
this.saveTextureDialog = new System.Windows.Forms.SaveFileDialog();
this.rightclickMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.showDisabled = new System.Windows.Forms.ToolStripMenuItem();
this.showEmpty = new System.Windows.Forms.ToolStripMenuItem();
this.usedSep = new System.Windows.Forms.ToolStripSeparator();
this.openNewTab = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.imageInLayoutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.usedStartLabel = new System.Windows.Forms.ToolStripMenuItem();
this.colorDialog = new System.Windows.Forms.ColorDialog();
this.toolstripMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.subresourceStripEnabled = new System.Windows.Forms.ToolStripMenuItem();
this.channelsStripEnabled = new System.Windows.Forms.ToolStripMenuItem();
this.zoomStripEnabled = new System.Windows.Forms.ToolStripMenuItem();
this.rangeStripEnabled = new System.Windows.Forms.ToolStripMenuItem();
this.overlayStripEnabled = new System.Windows.Forms.ToolStripMenuItem();
this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.miniToolStrip = new System.Windows.Forms.StatusStrip();
this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();
this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel();
this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel();
this.dockPanel = new WeifenLuo.WinFormsUI.Docking.DockPanel();
this.depthstencilPanel = new System.Windows.Forms.Panel();
this.depthDisplay = new System.Windows.Forms.RadioButton();
this.stencilDisplay = new System.Windows.Forms.RadioButton();
this.zoomStrip = new System.Windows.Forms.ToolStrip();
this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
this.zoomExactSize = new System.Windows.Forms.ToolStripButton();
this.fitToWindow = new System.Windows.Forms.ToolStripButton();
this.zoomOption = new System.Windows.Forms.ToolStripComboBox();
this.flip_y = new System.Windows.Forms.ToolStripButton();
this.overlayStrip = new System.Windows.Forms.ToolStrip();
this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
this.overlay = new System.Windows.Forms.ToolStripComboBox();
this.subStrip = new System.Windows.Forms.ToolStrip();
this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
this.mipLevelLabel = new System.Windows.Forms.ToolStripLabel();
this.mipLevel = new System.Windows.Forms.ToolStripComboBox();
this.sliceFaceLabel = new System.Windows.Forms.ToolStripLabel();
this.sliceFace = new System.Windows.Forms.ToolStripComboBox();
this.rangeStrip = new System.Windows.Forms.ToolStrip();
this.rangeBlack = new renderdocui.Controls.ToolStripSpringTextBox();
this.rangeWhite = new renderdocui.Controls.ToolStripSpringTextBox();
this.zoomRange = new System.Windows.Forms.ToolStripButton();
this.autoFit = new System.Windows.Forms.ToolStripButton();
this.reset01 = new System.Windows.Forms.ToolStripButton();
this.visualiseRange = new System.Windows.Forms.ToolStripButton();
this.channelStrip = new System.Windows.Forms.ToolStrip();
this.channels = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.customRed = new System.Windows.Forms.ToolStripButton();
this.customGreen = new System.Windows.Forms.ToolStripButton();
this.customBlue = new System.Windows.Forms.ToolStripButton();
this.customAlpha = new System.Windows.Forms.ToolStripButton();
this.mulSep = new System.Windows.Forms.ToolStripSeparator();
this.mulLabel = new System.Windows.Forms.ToolStripLabel();
this.hdrMul = new System.Windows.Forms.ToolStripComboBox();
this.customShader = new System.Windows.Forms.ToolStripComboBox();
this.customCreate = new System.Windows.Forms.ToolStripButton();
this.customEdit = new System.Windows.Forms.ToolStripButton();
this.customDelete = new System.Windows.Forms.ToolStripButton();
this.backcolorPick = new System.Windows.Forms.ToolStripButton();
this.checkerBack = new System.Windows.Forms.ToolStripButton();
this.gammaSeparator = new System.Windows.Forms.ToolStripSeparator();
this.gammaDisplay = new System.Windows.Forms.ToolStripButton();
this.statusbar = new System.Windows.Forms.StatusStrip();
this.texStatusDim = new System.Windows.Forms.ToolStripStatusLabel();
this.hoverSwatch = new System.Windows.Forms.ToolStripStatusLabel();
this.mainLayout = new System.Windows.Forms.TableLayoutPanel();
this.toolstripsPanel = new System.Windows.Forms.FlowLayoutPanel();
this.actionsStrip = new System.Windows.Forms.ToolStrip();
//.........这里部分代码省略.........
示例7: 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);
//.........这里部分代码省略.........
示例8: 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.ToolStripMenuItem MenuFile;
System.Windows.Forms.ToolStripMenuItem MenuFileNewProject;
System.Windows.Forms.ToolStripMenuItem MenuFileOpenProject;
System.Windows.Forms.ToolStripMenuItem MenuFileOpenRecent;
System.Windows.Forms.ToolStripSeparator Seperator01;
System.Windows.Forms.ToolStripMenuItem ClearRecent;
System.Windows.Forms.ToolStripSeparator Seperator02;
System.Windows.Forms.ToolStripMenuItem MenuFileCloseProject;
System.Windows.Forms.ToolStripSeparator Seperator03;
System.Windows.Forms.ToolStripMenuItem MenuFileSaveProject;
System.Windows.Forms.ToolStripMenuItem MenuFileSaveProjectAs;
System.Windows.Forms.ToolStripSeparator Seperator04;
System.Windows.Forms.ToolStripMenuItem MenuFileImport;
System.Windows.Forms.ToolStripMenuItem MenuFileImportEntity;
System.Windows.Forms.ToolStripMenuItem MenuFileImportComponent;
System.Windows.Forms.ToolStripMenuItem MenuFileExport;
System.Windows.Forms.ToolStripSeparator Seperator05;
System.Windows.Forms.ToolStripMenuItem MenuFileExit;
System.Windows.Forms.ToolStripMenuItem MenuEdit;
System.Windows.Forms.ToolStripMenuItem MenuEditUndo;
System.Windows.Forms.ToolStripMenuItem MenuEditRedo;
System.Windows.Forms.ToolStripSeparator Seperator06;
System.Windows.Forms.ToolStripMenuItem MenuEditCopy;
System.Windows.Forms.ToolStripMenuItem MenuEditPaste;
System.Windows.Forms.ToolStripMenuItem MenuEditCut;
System.Windows.Forms.ToolStripMenuItem MenuEditDelete;
System.Windows.Forms.ToolStripSeparator Seperator07;
System.Windows.Forms.ToolStripMenuItem MenuEditPreferences;
System.Windows.Forms.ToolStripMenuItem MenuView;
System.Windows.Forms.ToolStripMenuItem MenuViewSidebar;
System.Windows.Forms.ToolStripMenuItem MenuViewSidebarProjectTree;
System.Windows.Forms.ToolStripMenuItem MenuViewSidebarInspector;
System.Windows.Forms.ToolStripSeparator Seperator08;
System.Windows.Forms.ToolStripMenuItem MenuViewSidebarSidebar;
System.Windows.Forms.ToolStripSeparator Seperator10;
System.Windows.Forms.ToolStripMenuItem MenuViewShowLog;
System.Windows.Forms.ToolStripMenuItem MenuHelp;
System.Windows.Forms.ToolStripMenuItem MenuHelpDocumentation;
System.Windows.Forms.ToolStripMenuItem MenuHelpGithub;
System.Windows.Forms.ToolStripSeparator Seperator09;
System.Windows.Forms.ToolStripMenuItem MenuHelpAbout;
System.Windows.Forms.ToolStripMenuItem MenuProject;
System.Windows.Forms.ToolStripMenuItem MenuProjectAddScene;
System.Windows.Forms.ToolStripSeparator Separator11;
this.MenuViewWelcomePage = new System.Windows.Forms.ToolStripMenuItem();
this.MenuStrip = new System.Windows.Forms.MenuStrip();
MenuFile = new System.Windows.Forms.ToolStripMenuItem();
MenuFileNewProject = new System.Windows.Forms.ToolStripMenuItem();
MenuFileOpenProject = new System.Windows.Forms.ToolStripMenuItem();
MenuFileOpenRecent = new System.Windows.Forms.ToolStripMenuItem();
Seperator01 = new System.Windows.Forms.ToolStripSeparator();
ClearRecent = new System.Windows.Forms.ToolStripMenuItem();
Seperator02 = new System.Windows.Forms.ToolStripSeparator();
MenuFileCloseProject = new System.Windows.Forms.ToolStripMenuItem();
Seperator03 = new System.Windows.Forms.ToolStripSeparator();
MenuFileSaveProject = new System.Windows.Forms.ToolStripMenuItem();
MenuFileSaveProjectAs = new System.Windows.Forms.ToolStripMenuItem();
Seperator04 = new System.Windows.Forms.ToolStripSeparator();
MenuFileImport = new System.Windows.Forms.ToolStripMenuItem();
MenuFileImportEntity = new System.Windows.Forms.ToolStripMenuItem();
MenuFileImportComponent = new System.Windows.Forms.ToolStripMenuItem();
MenuFileExport = new System.Windows.Forms.ToolStripMenuItem();
Seperator05 = new System.Windows.Forms.ToolStripSeparator();
MenuFileExit = new System.Windows.Forms.ToolStripMenuItem();
MenuEdit = new System.Windows.Forms.ToolStripMenuItem();
MenuEditUndo = new System.Windows.Forms.ToolStripMenuItem();
MenuEditRedo = new System.Windows.Forms.ToolStripMenuItem();
Seperator06 = new System.Windows.Forms.ToolStripSeparator();
MenuEditCopy = new System.Windows.Forms.ToolStripMenuItem();
MenuEditPaste = new System.Windows.Forms.ToolStripMenuItem();
MenuEditCut = new System.Windows.Forms.ToolStripMenuItem();
MenuEditDelete = new System.Windows.Forms.ToolStripMenuItem();
Seperator07 = new System.Windows.Forms.ToolStripSeparator();
MenuEditPreferences = new System.Windows.Forms.ToolStripMenuItem();
MenuView = new System.Windows.Forms.ToolStripMenuItem();
MenuViewSidebar = new System.Windows.Forms.ToolStripMenuItem();
MenuViewSidebarProjectTree = new System.Windows.Forms.ToolStripMenuItem();
MenuViewSidebarInspector = new System.Windows.Forms.ToolStripMenuItem();
Seperator08 = new System.Windows.Forms.ToolStripSeparator();
MenuViewSidebarSidebar = new System.Windows.Forms.ToolStripMenuItem();
Seperator10 = new System.Windows.Forms.ToolStripSeparator();
MenuViewShowLog = new System.Windows.Forms.ToolStripMenuItem();
MenuHelp = new System.Windows.Forms.ToolStripMenuItem();
MenuHelpDocumentation = new System.Windows.Forms.ToolStripMenuItem();
MenuHelpGithub = new System.Windows.Forms.ToolStripMenuItem();
Seperator09 = new System.Windows.Forms.ToolStripSeparator();
MenuHelpAbout = new System.Windows.Forms.ToolStripMenuItem();
MenuProject = new System.Windows.Forms.ToolStripMenuItem();
MenuProjectAddScene = new System.Windows.Forms.ToolStripMenuItem();
Separator11 = new System.Windows.Forms.ToolStripSeparator();
this.MenuStrip.SuspendLayout();
this.SuspendLayout();
//
// MenuFile
//.........这里部分代码省略.........
示例9: 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.dgvData = new System.Windows.Forms.DataGridView();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.btnRowAdd = new System.Windows.Forms.Button();
this.btnColumnAdd = new System.Windows.Forms.Button();
this.btnDataFileLoad = new System.Windows.Forms.Button();
this.grpDataType = new System.Windows.Forms.GroupBox();
this.radDataTypeOrd = new System.Windows.Forms.RadioButton();
this.radDataTypeInt = new System.Windows.Forms.RadioButton();
this.radDataTypeFre = new System.Windows.Forms.RadioButton();
this.btnRun = new System.Windows.Forms.Button();
this.groupBox5 = new System.Windows.Forms.GroupBox();
this.dgvStatMeasure = new System.Windows.Forms.DataGridView();
this.colStatMeasure = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colOrder = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.colUse = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.smiDeleteSelCol = new System.Windows.Forms.ToolStripMenuItem();
this.smiDeleteSelRow = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.cmsDataCells = new System.Windows.Forms.ContextMenuStrip(this.components);
this.smiRenameHeader = new System.Windows.Forms.ToolStripMenuItem();
this.txtRenameHeader = new System.Windows.Forms.ToolStripTextBox();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.smiRenameColumn = new System.Windows.Forms.ToolStripMenuItem();
this.smiRenameRow = new System.Windows.Forms.ToolStripMenuItem();
this.smiRenameTopLeftCell = new System.Windows.Forms.ToolStripMenuItem();
this.menInputAndSelection = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.aboutStatisticalAnalyzerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
this.groupBox1.SuspendLayout();
this.grpDataType.SuspendLayout();
this.groupBox5.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).BeginInit();
this.cmsDataCells.SuspendLayout();
this.menInputAndSelection.SuspendLayout();
this.SuspendLayout();
//
// dgvData
//
this.dgvData.AllowUserToResizeColumns = false;
this.dgvData.AllowUserToResizeRows = false;
this.dgvData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1});
this.dgvData.Location = new System.Drawing.Point(0, 90);
this.dgvData.Name = "dgvData";
this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
this.dgvData.Size = new System.Drawing.Size(596, 365);
this.dgvData.TabIndex = 0;
this.dgvData.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellEndEdit);
this.dgvData.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseClick);
this.dgvData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseUp);
this.dgvData.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler(this.dgvData_ColumnAdded);
this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseClick);
this.dgvData.ColumnHeaderMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseDoubleClick);
this.dgvData.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvData_DefaultValuesNeeded);
//
// Column1
//
this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
this.Column1.HeaderText = "Column1";
this.Column1.Name = "Column1";
this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Column1.Width = 54;
//
// groupBox1
//
this.groupBox1.Controls.Add(this.btnRowAdd);
this.groupBox1.Controls.Add(this.btnColumnAdd);
this.groupBox1.Controls.Add(this.btnDataFileLoad);
this.groupBox1.Controls.Add(this.dgvData);
this.groupBox1.Location = new System.Drawing.Point(12, 26);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(596, 461);
this.groupBox1.TabIndex = 1;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Input and Select Data";
//
// btnRowAdd
//
this.btnRowAdd.Location = new System.Drawing.Point(91, 67);
this.btnRowAdd.Name = "btnRowAdd";
this.btnRowAdd.Size = new System.Drawing.Size(79, 21);
//.........这里部分代码省略.........
示例10: 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.Windows.Forms.Label productCodeLabel;
System.Windows.Forms.Label nameLabel;
System.Windows.Forms.Label versionLabel;
System.Windows.Forms.Label releaseDateLabel1;
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProductIncidents));
this.productsBindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
this.productsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.techSupportDataSet2C = new SportsPro.TechSupportDataSet2C();
this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.productCodeTextBox = new System.Windows.Forms.TextBox();
this.nameTextBox = new System.Windows.Forms.TextBox();
this.versionTextBox = new System.Windows.Forms.TextBox();
this.releaseDateTextBox = new System.Windows.Forms.TextBox();
this.incidentsDataGridView = new System.Windows.Forms.DataGridView();
this.incidentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
this.productsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.ProductsTableAdapter();
this.tableAdapterManager = new SportsPro.TechSupportDataSet2CTableAdapters.TableAdapterManager();
this.incidentsTableAdapter = new SportsPro.TechSupportDataSet2CTableAdapters.IncidentsTableAdapter();
this.CustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DateOpened = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DateClosed = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.TechnicianName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.CustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.DisplayCustomerInfo = new System.Windows.Forms.DataGridViewButtonColumn();
productCodeLabel = new System.Windows.Forms.Label();
nameLabel = new System.Windows.Forms.Label();
versionLabel = new System.Windows.Forms.Label();
releaseDateLabel1 = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.productsBindingNavigator)).BeginInit();
this.productsBindingNavigator.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.productsBindingSource)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.techSupportDataSet2C)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.incidentsDataGridView)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.incidentsBindingSource)).BeginInit();
this.SuspendLayout();
//
// productCodeLabel
//
productCodeLabel.AutoSize = true;
productCodeLabel.Location = new System.Drawing.Point(9, 35);
productCodeLabel.Name = "productCodeLabel";
productCodeLabel.Size = new System.Drawing.Size(75, 13);
productCodeLabel.TabIndex = 1;
productCodeLabel.Text = "Product Code:";
//
// nameLabel
//
nameLabel.AutoSize = true;
nameLabel.Location = new System.Drawing.Point(9, 61);
nameLabel.Name = "nameLabel";
nameLabel.Size = new System.Drawing.Size(38, 13);
nameLabel.TabIndex = 3;
nameLabel.Text = "Name:";
//
// versionLabel
//
versionLabel.AutoSize = true;
versionLabel.Location = new System.Drawing.Point(9, 87);
versionLabel.Name = "versionLabel";
versionLabel.Size = new System.Drawing.Size(45, 13);
versionLabel.TabIndex = 5;
versionLabel.Text = "Version:";
//
// releaseDateLabel1
//
releaseDateLabel1.AutoSize = true;
releaseDateLabel1.Location = new System.Drawing.Point(9, 113);
releaseDateLabel1.Name = "releaseDateLabel1";
releaseDateLabel1.Size = new System.Drawing.Size(75, 13);
releaseDateLabel1.TabIndex = 9;
releaseDateLabel1.Text = "Release Date:";
//
// productsBindingNavigator
//
this.productsBindingNavigator.AddNewItem = null;
this.productsBindingNavigator.BindingSource = this.productsBindingSource;
this.productsBindingNavigator.CountItem = this.bindingNavigatorCountItem;
this.productsBindingNavigator.DeleteItem = null;
this.productsBindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.bindingNavigatorMoveFirstItem,
this.bindingNavigatorMovePreviousItem,
this.bindingNavigatorSeparator,
this.bindingNavigatorPositionItem,
this.bindingNavigatorCountItem,
//.........这里部分代码省略.........
示例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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.createToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sQLDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.oDataFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sharePointFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.editFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cloneFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.deleteFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.purgeFeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.GridView = new System.Windows.Forms.DataGridView();
this.Action = new System.Windows.Forms.DataGridViewLinkColumn();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ShowError = new System.Windows.Forms.ToolStripMenuItem();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.JobStatus = new System.Windows.Forms.ToolStripStatusLabel();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.menuStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.GridView)).BeginInit();
this.contextMenuStrip1.SuspendLayout();
this.statusStrip1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem,
this.createToolStripMenuItem,
this.aboutToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Padding = new System.Windows.Forms.Padding(8, 2, 0, 2);
this.menuStrip1.Size = new System.Drawing.Size(649, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(91, 22);
this.exitToolStripMenuItem.Text = "&Exit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
// createToolStripMenuItem
//
this.createToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newFeedToolStripMenuItem,
this.toolStripSeparator1,
this.editFeedToolStripMenuItem,
this.cloneFeedToolStripMenuItem,
this.toolStripSeparator2,
this.deleteFeedToolStripMenuItem,
this.purgeFeedToolStripMenuItem});
this.createToolStripMenuItem.Name = "createToolStripMenuItem";
this.createToolStripMenuItem.Size = new System.Drawing.Size(36, 20);
this.createToolStripMenuItem.Text = "&Job";
this.createToolStripMenuItem.Click += new System.EventHandler(this.createToolStripMenuItem_Click);
//
// newFeedToolStripMenuItem
//
this.newFeedToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.sQLDatabaseToolStripMenuItem,
this.oDataFeedToolStripMenuItem,
this.sharePointFeedToolStripMenuItem});
this.newFeedToolStripMenuItem.Name = "newFeedToolStripMenuItem";
this.newFeedToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.newFeedToolStripMenuItem.Text = "&Add";
//
// sQLDatabaseToolStripMenuItem
//
this.sQLDatabaseToolStripMenuItem.Name = "sQLDatabaseToolStripMenuItem";
//.........这里部分代码省略.........
示例12: 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(ZedGraphToolstrip));
this.toolStripZed = new System.Windows.Forms.ToolStrip();
this.showPointValuesButton = new System.Windows.Forms.ToolStripButton();
this.cursorValuesButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.saveImageButton = new System.Windows.Forms.ToolStripButton();
this.copyImageButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.pageSetupButton = new System.Windows.Forms.ToolStripButton();
this.printPreviewButton = new System.Windows.Forms.ToolStripButton();
this.printImagesButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.zoomInButton = new System.Windows.Forms.ToolStripButton();
this.zoomOutButton = new System.Windows.Forms.ToolStripButton();
this.defaultScaleButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.activateScrollButton = new System.Windows.Forms.ToolStripButton();
this.toolStripZed.SuspendLayout();
this.SuspendLayout();
//
// toolStripZed
//
this.toolStripZed.Dock = System.Windows.Forms.DockStyle.Left;
this.toolStripZed.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStripZed.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.showPointValuesButton,
this.cursorValuesButton,
this.toolStripSeparator5,
this.saveImageButton,
this.copyImageButton,
this.toolStripSeparator6,
this.pageSetupButton,
this.printPreviewButton,
this.printImagesButton,
this.toolStripSeparator7,
this.zoomInButton,
this.zoomOutButton,
this.defaultScaleButton,
this.toolStripSeparator8,
this.activateScrollButton});
this.toolStripZed.Location = new System.Drawing.Point(0, 0);
this.toolStripZed.Name = "toolStripZed";
this.toolStripZed.Size = new System.Drawing.Size(32, 345);
this.toolStripZed.TabIndex = 0;
this.toolStripZed.Text = "toolStrip1";
//
// showPointValuesButton
//
this.showPointValuesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.showPointValuesButton.Image = global::zaitun.Properties.Resources.point_values;
this.showPointValuesButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.showPointValuesButton.Name = "showPointValuesButton";
this.showPointValuesButton.Size = new System.Drawing.Size(29, 20);
this.showPointValuesButton.Text = "Show Point Values";
this.showPointValuesButton.Click += new System.EventHandler(this.showPointButtonClick);
//
// cursorValuesButton
//
this.cursorValuesButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.cursorValuesButton.Image = global::zaitun.Properties.Resources.cursor_value;
this.cursorValuesButton.ImageTransparentColor = System.Drawing.Color.Magenta;
this.cursorValuesButton.Name = "cursorValuesButton";
this.cursorValuesButton.Size = new System.Drawing.Size(29, 20);
this.cursorValuesButton.Text = "Shor Cursor Values";
this.cursorValuesButton.Click += new System.EventHandler(this.cursorValuesButton_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(21, 6);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(21, 6);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(21, 6);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(21, 6);
//
// toolStripButton1
//
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
//.........这里部分代码省略.........
示例13: 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.ConditionGrpBox = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.ConditionTree = new System.Windows.Forms.TreeView();
this.CriteriaRootMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.NewCriteriaMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.UndoAllChangesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.label1 = new System.Windows.Forms.Label();
this.ListTypeBox = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.ValueBox = new System.Windows.Forms.NumericUpDown();
this.EnableValue = new System.Windows.Forms.CheckBox();
this.ConditionDescBox = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.SaveBtn = new System.Windows.Forms.Button();
this.CancelBtn = new System.Windows.Forms.Button();
this.CriteriaItemMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.EditCritertiaMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DeleteCriteriaMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ConditionGrpBox.SuspendLayout();
this.CriteriaRootMenu.SuspendLayout();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ValueBox)).BeginInit();
this.CriteriaItemMenu.SuspendLayout();
this.SuspendLayout();
//
// ConditionGrpBox
//
this.ConditionGrpBox.Controls.Add(this.label5);
this.ConditionGrpBox.Controls.Add(this.label4);
this.ConditionGrpBox.Controls.Add(this.ConditionTree);
this.ConditionGrpBox.Location = new System.Drawing.Point(12, 26);
this.ConditionGrpBox.Name = "ConditionGrpBox";
this.ConditionGrpBox.Size = new System.Drawing.Size(266, 262);
this.ConditionGrpBox.TabIndex = 0;
this.ConditionGrpBox.TabStop = false;
this.ConditionGrpBox.Text = "Condition List";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(9, 241);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(170, 13);
this.label5.TabIndex = 12;
this.label5.Text = "* Right click to open context menu";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(9, 223);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(148, 13);
this.label4.TabIndex = 11;
this.label4.Text = "* Double click to edit a criteria";
//
// ConditionTree
//
this.ConditionTree.BackColor = System.Drawing.SystemColors.Window;
this.ConditionTree.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.ConditionTree.ContextMenuStrip = this.CriteriaRootMenu;
this.ConditionTree.Location = new System.Drawing.Point(1, 27);
this.ConditionTree.Name = "ConditionTree";
this.ConditionTree.ShowPlusMinus = false;
this.ConditionTree.Size = new System.Drawing.Size(263, 190);
this.ConditionTree.TabIndex = 0;
this.ConditionTree.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.ConditionTree_BeforeCollapse);
this.ConditionTree.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ConditionTree_AfterSelect);
this.ConditionTree.NodeMouseDoubleClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.ConditionTree_NodeMouseDoubleClick);
this.ConditionTree.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ConditionTree_KeyDown);
//
// CriteriaRootMenu
//
this.CriteriaRootMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.NewCriteriaMenuItem,
this.toolStripSeparator1,
this.UndoAllChangesMenuItem});
this.CriteriaRootMenu.Name = "CriteriaMenu";
this.CriteriaRootMenu.Size = new System.Drawing.Size(165, 76);
//
// NewCriteriaMenuItem
//
this.NewCriteriaMenuItem.Name = "NewCriteriaMenuItem";
this.NewCriteriaMenuItem.Size = new System.Drawing.Size(171, 22);
this.NewCriteriaMenuItem.Text = "Add New Criteria";
this.NewCriteriaMenuItem.Click += new System.EventHandler(this.NewCriteria_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(168, 6);
//
//.........这里部分代码省略.........
示例14: InitializeComponent
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.mnuFile = new System.Windows.Forms.ToolStripMenuItem();
this.mnuOpen = new System.Windows.Forms.ToolStripMenuItem();
this.mnuQuit = new System.Windows.Forms.ToolStripMenuItem();
this.mnuExtras = new System.Windows.Forms.ToolStripMenuItem();
this.mnuHeaderInfo = new System.Windows.Forms.ToolStripMenuItem();
this.mnuWZCompare = new System.Windows.Forms.ToolStripMenuItem();
this.mnuSaveXML = new System.Windows.Forms.ToolStripMenuItem();
this.mnuLoadXML = new System.Windows.Forms.ToolStripMenuItem();
this.mnuExtract = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
this.findToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
this.mnuSettings = new System.Windows.Forms.ToolStripMenuItem();
this.mnuAbout = new System.Windows.Forms.ToolStripMenuItem();
this.licenseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.mnuCloseRender = new System.Windows.Forms.ToolStripMenuItem();
this.treeView1 = new System.Windows.Forms.TreeView();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.button8 = new System.Windows.Forms.Button();
this.button7 = new System.Windows.Forms.Button();
this.button6 = new System.Windows.Forms.Button();
this.pnlSound = new System.Windows.Forms.Panel();
this.checkBox1 = new System.Windows.Forms.CheckBox();
this.trackBar1 = new System.Windows.Forms.TrackBar();
this.label4 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();
this.button5 = new System.Windows.Forms.Button();
this.button4 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.btnSaveMp3 = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.lstRender = new System.Windows.Forms.ListBox();
this.chkNPC = new System.Windows.Forms.CheckBox();
this.chkMob = new System.Windows.Forms.CheckBox();
this.chkReactor = new System.Windows.Forms.CheckBox();
this.chkPortal = new System.Windows.Forms.CheckBox();
this.button2 = new System.Windows.Forms.Button();
this.label9 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.txtType = new System.Windows.Forms.TextBox();
this.pnlPicture = new System.Windows.Forms.Panel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.lblUOL = new System.Windows.Forms.LinkLabel();
this.textBox8 = new System.Windows.Forms.TextBox();
this.renderContainer = new System.Windows.Forms.SplitContainer();
this.picRender = new System.Windows.Forms.PictureBox();
this.cmdCloseRender = new System.Windows.Forms.Button();
this.cmdSaveRender = new System.Windows.Forms.Button();
this.cmdRedrawRender = new System.Windows.Forms.Button();
this.lstRenders = new System.Windows.Forms.ListBox();
this.chkReactorr = new System.Windows.Forms.CheckBox();
this.chkPortalr = new System.Windows.Forms.CheckBox();
this.chkMobr = new System.Windows.Forms.CheckBox();
this.chkNPCr = new System.Windows.Forms.CheckBox();
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.label2 = new System.Windows.Forms.Label();
this.treeView2 = new System.Windows.Forms.TreeView();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.fullExtractPanel = new System.Windows.Forms.Panel();
this.label6 = new System.Windows.Forms.Label();
this.extractCount = new System.Windows.Forms.Label();
this.extractBar = new System.Windows.Forms.ProgressBar();
this.extractCancel = new System.Windows.Forms.Button();
this.extractStart = new System.Windows.Forms.Button();
this.button9 = new System.Windows.Forms.Button();
this.menuStrip1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.pnlSound.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
this.pnlPicture.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.renderContainer.Panel1.SuspendLayout();
this.renderContainer.Panel2.SuspendLayout();
this.renderContainer.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.picRender)).BeginInit();
this.statusStrip1.SuspendLayout();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.splitContainer2.Panel1.SuspendLayout();
this.splitContainer2.Panel2.SuspendLayout();
this.splitContainer2.SuspendLayout();
this.fullExtractPanel.SuspendLayout();
this.SuspendLayout();
//
//.........这里部分代码省略.........
示例15: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.toolStripPrincipal = new System.Windows.Forms.ToolStrip();
this.btnNuevo = new System.Windows.Forms.ToolStripButton();
this.btnGuardar = new System.Windows.Forms.ToolStripButton();
this.btnEditar = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.btnCancelar = new System.Windows.Forms.ToolStripButton();
this.btnImprimir = new System.Windows.Forms.ToolStripButton();
this.btnBuscar = new System.Windows.Forms.ToolStripButton();
this.btnEliminar = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.btnSalir = new System.Windows.Forms.ToolStripButton();
this.tbControlPrincipal = new System.Windows.Forms.TabControl();
this.tbpMaestro = new System.Windows.Forms.TabPage();
this.toolStripPrincipal.SuspendLayout();
this.tbControlPrincipal.SuspendLayout();
this.SuspendLayout();
//
// toolStripPrincipal
//
this.toolStripPrincipal.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStripPrincipal.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btnNuevo,
this.btnGuardar,
this.btnEditar,
this.toolStripSeparator2,
this.btnCancelar,
this.btnImprimir,
this.btnBuscar,
this.btnEliminar,
this.toolStripSeparator1,
this.btnSalir});
this.toolStripPrincipal.Location = new System.Drawing.Point(0, 0);
this.toolStripPrincipal.Name = "toolStripPrincipal";
this.toolStripPrincipal.Size = new System.Drawing.Size(875, 25);
this.toolStripPrincipal.TabIndex = 1;
this.toolStripPrincipal.Text = "Barra De Botones";
//
// btnNuevo
//
this.btnNuevo.Image = global::aPresentacion.Properties.Resources.add;
this.btnNuevo.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnNuevo.Name = "btnNuevo";
this.btnNuevo.Size = new System.Drawing.Size(62, 22);
this.btnNuevo.Text = "Nuevo";
this.btnNuevo.ToolTipText = "Nuevo Registro";
this.btnNuevo.Click += new System.EventHandler(this.btnNuevo_Click);
//
// btnGuardar
//
this.btnGuardar.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnGuardar.Name = "btnGuardar";
this.btnGuardar.Size = new System.Drawing.Size(53, 22);
this.btnGuardar.Text = "Guardar";
this.btnGuardar.ToolTipText = "Guardar Registro";
//
// btnEditar
//
this.btnEditar.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnEditar.Name = "btnEditar";
this.btnEditar.Size = new System.Drawing.Size(44, 22);
this.btnEditar.Text = "Editar ";
this.btnEditar.ToolTipText = "Editar Registro";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// btnCancelar
//
this.btnCancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnCancelar.Name = "btnCancelar";
this.btnCancelar.Size = new System.Drawing.Size(57, 22);
this.btnCancelar.Text = "Cancelar";
this.btnCancelar.ToolTipText = "Cancelar Registro";
//
// btnImprimir
//
this.btnImprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnImprimir.Name = "btnImprimir";
this.btnImprimir.Size = new System.Drawing.Size(57, 22);
this.btnImprimir.Text = "Imprimir";
//
// btnBuscar
//
this.btnBuscar.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btnBuscar.Name = "btnBuscar";
this.btnBuscar.Size = new System.Drawing.Size(46, 22);
this.btnBuscar.Text = "Buscar";
this.btnBuscar.ToolTipText = "Buscar Registro";
//
// btnEliminar
//
this.btnEliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
//.........这里部分代码省略.........