本文整理汇总了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类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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);
}
开发者ID:t-kojima,项目名称:FluidLauncher,代码行数:53,代码来源:NotifyIconWrapper.cs
示例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();
}
开发者ID:mjamry,项目名称:WorkReportReminder,代码行数:47,代码来源:UICore.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.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;
//.........这里部分代码省略.........
开发者ID:e-Deniska,项目名称:easyMoney,代码行数:101,代码来源:AccountListForm.Designer.cs
示例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();
开发者ID:njmube,项目名称:ErpBapSoftNet_Producion,代码行数:67,代码来源:Frm_ventas.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()
{
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";
//.........这里部分代码省略.........
开发者ID:LudovicT,项目名称:NShape,代码行数:101,代码来源:DesignEditorDialog.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.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();
//.........这里部分代码省略.........
开发者ID:kvark,项目名称:renderdoc,代码行数:101,代码来源:TextureViewer.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()
{
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);
//.........这里部分代码省略.........
开发者ID:nsuhanshetty,项目名称:JanataBazaar,代码行数:101,代码来源:WinForm_Abstract.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()
{
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
//.........这里部分代码省略.........
开发者ID:dweidner,项目名称:xna-honeycube,代码行数:101,代码来源:AppMenu.Designer.cs
示例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);
//.........这里部分代码省略.........
开发者ID:Jakesterwars,项目名称:CS499,代码行数:101,代码来源:InputAndSelectionForm.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()
{
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
|
请发表评论