• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Forms.ToolStrip类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Windows.Forms.ToolStrip的典型用法代码示例。如果您正苦于以下问题:C# System.Windows.Forms.ToolStrip类的具体用法?C# System.Windows.Forms.ToolStrip怎么用?C# System.Windows.Forms.ToolStrip使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



System.Windows.Forms.ToolStrip类属于命名空间,在下文中一共展示了System.Windows.Forms.ToolStrip类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: PluginsController

 public PluginsController(IVisualEnvironmentCompiler VisualEnvironmentCompiler,System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem, System.Windows.Forms.ToolStrip ToolStrip, IWorkbench workbench)
 {
     this.ToolStripMenuItem = ToolStripMenuItem;
     this.ToolStrip = ToolStrip;
     this.VisualEnvironmentCompiler = VisualEnvironmentCompiler;
     this.workbench = workbench;
 }
开发者ID:lisiynos,项目名称:pascalabcnet,代码行数:7,代码来源:PluginsController.cs


示例2: InitializeComponent

		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( typeof( TreeViewer ) );
			this.tsMain = new System.Windows.Forms.ToolStrip();
			this.tsMain.SuspendLayout();
			this.SuspendLayout();
			//
			// tsMain
			//
			this.tsMain.Location = new System.Drawing.Point( 0, 0 );
			this.tsMain.AutoSize = false;
			this.tsMain.Name = "tsMain";
			this.tsMain.Size = new System.Drawing.Size( 203, 0 );
			this.tsMain.TabIndex = 0;
			// 
			// BrowserControl
			// 
			this.Controls.Add( this.tsMain );
			this.Name = "BrowserControl";
			this.Size = new System.Drawing.Size( 203, DEFAULT_HEIGHT );
			this.tsMain.ResumeLayout( false );
			this.tsMain.PerformLayout();
			this.ResumeLayout( false );
			this.PerformLayout();

		}
开发者ID:olexta,项目名称:Toolkit,代码行数:30,代码来源:TreeViewer.designer.cs


示例3: ToolStripRenderEventArgs

 public ToolStripRenderEventArgs(System.Drawing.Graphics g, System.Windows.Forms.ToolStrip toolStrip)
 {
     this.affectedBounds = Rectangle.Empty;
     this.backColor = Color.Empty;
     this.toolStrip = toolStrip;
     this.graphics = g;
     this.affectedBounds = new Rectangle(Point.Empty, toolStrip.Size);
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:8,代码来源:ToolStripRenderEventArgs.cs


示例4: 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(frmBankDoc));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tsPO = new System.Windows.Forms.ToolStripButton();
     this.dgvSelectBankDoc = new System.Windows.Forms.DataGridView();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectBankDoc)).BeginInit();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsPO});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(420, 39);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // tsPO
     //
     this.tsPO.Image = ((System.Drawing.Image)(resources.GetObject("tsPO.Image")));
     this.tsPO.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsPO.Name = "tsPO";
     this.tsPO.Size = new System.Drawing.Size(99, 36);
     this.tsPO.Text = "Enter-เลือก";
     //
     // dgvSelectBankDoc
     //
     this.dgvSelectBankDoc.AllowUserToAddRows = false;
     this.dgvSelectBankDoc.AllowUserToDeleteRows = false;
     this.dgvSelectBankDoc.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvSelectBankDoc.Location = new System.Drawing.Point(0, 39);
     this.dgvSelectBankDoc.Name = "dgvSelectBankDoc";
     this.dgvSelectBankDoc.ReadOnly = true;
     this.dgvSelectBankDoc.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvSelectBankDoc.Size = new System.Drawing.Size(420, 235);
     this.dgvSelectBankDoc.TabIndex = 11;
     //
     // frmBankDoc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(420, 271);
     this.Controls.Add(this.dgvSelectBankDoc);
     this.Controls.Add(this.toolStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmBankDoc";
     this.Text = "frmBankDoc";
     this.Load += new System.EventHandler(this.frmBankDoc_Load);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvSelectBankDoc)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:itktc,项目名称:projectktc-v2,代码行数:62,代码来源:frmBankDoc.designer.cs


示例5: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmGrid));
     this.dgvResults = new System.Windows.Forms.DataGridView();
     this.tbrMain = new System.Windows.Forms.ToolStrip();
     this.tbrMainClose = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).BeginInit();
     this.tbrMain.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvResults
     //
     this.dgvResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvResults.Location = new System.Drawing.Point(5, 45);
     this.dgvResults.Name = "dgvResults";
     this.dgvResults.RowTemplate.Height = 24;
     this.dgvResults.Size = new System.Drawing.Size(998, 388);
     this.dgvResults.TabIndex = 0;
     //
     // tbrMain
     //
     this.tbrMain.BackColor = System.Drawing.Color.Silver;
     this.tbrMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tbrMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tbrMainClose});
     this.tbrMain.Location = new System.Drawing.Point(0, 0);
     this.tbrMain.Name = "tbrMain";
     this.tbrMain.Size = new System.Drawing.Size(1013, 38);
     this.tbrMain.TabIndex = 45;
     this.tbrMain.Text = "toolStrip1";
     //
     // tbrMainClose
     //
     this.tbrMainClose.Image = ((System.Drawing.Image)(resources.GetObject("tbrMainClose.Image")));
     this.tbrMainClose.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tbrMainClose.Name = "tbrMainClose";
     this.tbrMainClose.Size = new System.Drawing.Size(40, 35);
     this.tbrMainClose.Text = "Close";
     this.tbrMainClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tbrMainClose.Click += new System.EventHandler(this.tbrMainClose_Click);
     //
     // frmGrid
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1013, 443);
     this.Controls.Add(this.tbrMain);
     this.Controls.Add(this.dgvResults);
     this.MinimizeBox = false;
     this.Name = "frmGrid";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Display results grid";
     ((System.ComponentModel.ISupportInitialize)(this.dgvResults)).EndInit();
     this.tbrMain.ResumeLayout(false);
     this.tbrMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:steven-e-smith,项目名称:igenfuels-igenformsviewer,代码行数:62,代码来源:frmGrid.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NetworkInterfaceSelector));
     this.MyToolStrip = new System.Windows.Forms.ToolStrip();
     this.ScanButton = new System.Windows.Forms.ToolStripButton();
     this.NetworkInterfaceDropDown = new System.Windows.Forms.ToolStripDropDownButton();
     this.MyToolStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // MyToolStrip
     //
     this.MyToolStrip.Dock = System.Windows.Forms.DockStyle.Fill;
     this.MyToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.MyToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ScanButton,
     this.NetworkInterfaceDropDown});
     this.MyToolStrip.Location = new System.Drawing.Point(0, 0);
     this.MyToolStrip.Name = "MyToolStrip";
     this.MyToolStrip.Size = new System.Drawing.Size(212, 25);
     this.MyToolStrip.TabIndex = 0;
     this.MyToolStrip.Text = "toolStrip1";
     //
     // ScanButton
     //
     this.ScanButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.ScanButton.Image = global::inSSIDer.Properties.Resources.wifiPlay;
     this.ScanButton.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.ScanButton.Name = "ScanButton";
     this.ScanButton.Size = new System.Drawing.Size(51, 22);
     this.ScanButton.Text = "Start";
     this.ScanButton.Click += new System.EventHandler(this.ScanButton_Click);
     //
     // NetworkInterfaceDropDown
     //
     this.NetworkInterfaceDropDown.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.NetworkInterfaceDropDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.NetworkInterfaceDropDown.Image = ((System.Drawing.Image)(resources.GetObject("NetworkInterfaceDropDown.Image")));
     this.NetworkInterfaceDropDown.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.NetworkInterfaceDropDown.Name = "NetworkInterfaceDropDown";
     this.NetworkInterfaceDropDown.Size = new System.Drawing.Size(127, 22);
     this.NetworkInterfaceDropDown.Text = "Select Wi-Fi Adapter";
     this.NetworkInterfaceDropDown.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.NetworkInterfaceDropDown_DropDownItemClicked);
     //
     // NetworkInterfaceSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.Controls.Add(this.MyToolStrip);
     this.Name = "NetworkInterfaceSelector";
     this.Size = new System.Drawing.Size(212, 25);
     this.MyToolStrip.ResumeLayout(false);
     this.MyToolStrip.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:sp1ke77,项目名称:inSSIDer-2,代码行数:60,代码来源:NetworkInterfaceSelector.designer.cs


示例7: InitializeComponent

 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources =
         new System.ComponentModel.ComponentResourceManager(typeof(UltraVNCSC));
     this.tsMain = new System.Windows.Forms.ToolStrip();
     this.Load += new System.EventHandler(this.UltraVNCSC_Load);
     this.btnDisconnect = new System.Windows.Forms.ToolStripButton();
     this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
     this.pnlContainer = new System.Windows.Forms.Panel();
     this.tsMain.SuspendLayout();
     this.SuspendLayout();
     //
     //tsMain
     //
     this.tsMain.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnDisconnect });
     this.tsMain.Location = new System.Drawing.Point(0, 0);
     this.tsMain.Name = "tsMain";
     this.tsMain.Size = new System.Drawing.Size(446, 25);
     this.tsMain.TabIndex = 0;
     this.tsMain.Text = "ToolStrip1";
     //
     //btnDisconnect
     //
     this.btnDisconnect.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.btnDisconnect.Image = (System.Drawing.Image)(resources.GetObject("btnDisconnect.Image"));
     this.btnDisconnect.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnDisconnect.Name = "btnDisconnect";
     this.btnDisconnect.Size = new System.Drawing.Size(63, 22);
     this.btnDisconnect.Text = "Disconnect";
     //
     //pnlContainer
     //
     this.pnlContainer.Anchor =
         (System.Windows.Forms.AnchorStyles)
         (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) |
           System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right);
     this.pnlContainer.Location = new System.Drawing.Point(0, 27);
     this.pnlContainer.Name = "pnlContainer";
     this.pnlContainer.Size = new System.Drawing.Size(446, 335);
     this.pnlContainer.TabIndex = 1;
     //
     //UltraVNCSC
     //
     this.ClientSize = new System.Drawing.Size(446, 362);
     this.Controls.Add(this.pnlContainer);
     this.Controls.Add(this.tsMain);
     this.Icon = global::My.Resources.Resources.UVNC_SC_Icon;
     this.Name = "UltraVNCSC";
     this.TabText = "UltraVNC SC";
     this.Text = "UltraVNC SC";
     this.tsMain.ResumeLayout(false);
     this.tsMain.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:jpmarques,项目名称:mRemoteNC,代码行数:56,代码来源:UI.Window.UltraVNCSC.cs


示例8: MapEditor

        public MapEditor(MapFile file)
            : base(file)
        {
            map = file;
            this.tileset = map.TilesetFile[map.TilesetID];

            mapPanel = new MapPanel(map.Layers, tileset);
            mapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Controls.Add(mapPanel);
            this.KeyPreview = true;
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(MapEditor_KeyDown);

            this.mapPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseDown);
            this.mapPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(mapPanel_MouseMove);

            tilePanel = new TilePanel(tileset);
            tilePanel.TileSelected += new EventHandler<TilePanel.TileSelectedArgs>(tilePanel_TileSelected);
            tilePanel.Dock = System.Windows.Forms.DockStyle.Fill;

            toolstrip = new System.Windows.Forms.ToolStrip();
            toolstrip.Dock = System.Windows.Forms.DockStyle.Top;
            toolstrip.Stretch = true;
            toolstrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;

            buttonSelected = new System.Windows.Forms.ToolStripButton();
            buttonSelected.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.SizeToFit;
            buttonSelected.AutoSize = true;
            buttonSelected.Image = tileset[0];
            buttonSelected.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;

            toolstrip.Items.Add(buttonSelected);
            toolstrip.Items.Add(new System.Windows.Forms.ToolStripSeparator());

            buttonLayers = new List<System.Windows.Forms.ToolStripButton>();
            for (int i = 0; i < this.map.Layers.Count; i++)
            {
                var laybtn = new System.Windows.Forms.ToolStripButton();
                laybtn.Text = string.Format("{0}", i + 1);
                laybtn.Tag = i;
                laybtn.Click += new EventHandler(laybtn_Click);
                if (this.map.Layers[i].Type == MapLayerType.HalfBlockShadow)
                {
                    laybtn.Text = "阴影";
                }
                toolstrip.Items.Add(laybtn);
                buttonLayers.Add(laybtn);
            }

            toolboxPanel = new System.Windows.Forms.Panel();
            this.toolboxPanel.Controls.Add(tilePanel);
            this.toolboxPanel.Controls.Add(toolstrip);
        }
开发者ID:NekoProject,项目名称:NekoKun,代码行数:52,代码来源:MapEditor.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.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(640, 25);
     this.toolStrip1.TabIndex = 1;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Black;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(50, 22);
     this.toolStripButton1.Text = "Refresh";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // DisplayView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(640, 460);
     this.Controls.Add(this.toolStrip1);
     this.Name = "DisplayView";
     this.Text = "Display View";
     this.Load += new System.EventHandler(this.DisplayView_Load);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.DisplayForm_Paint);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:Zahovay,项目名称:MOSA-Project,代码行数:46,代码来源:DisplayView.designer.cs


示例10: InitializeComponent

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.Windows.Forms.ToolStrip toolStrip1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDistribuicaoPorLoja));
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = 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();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.tbIncluir = new System.Windows.Forms.ToolStripButton();
            this.tbAlterar = new System.Windows.Forms.ToolStripButton();
            this.tbExcluir = new System.Windows.Forms.ToolStripButton();
            this.tbImprimir = new System.Windows.Forms.ToolStripButton();
            this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            this.label11 = new System.Windows.Forms.Label();
            this.label12 = new System.Windows.Forms.Label();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.panel4 = new System.Windows.Forms.Panel();
            this.label3 = new System.Windows.Forms.Label();
            this.btnGerarRelatorio = new System.Windows.Forms.Button();
            this.panel5 = new System.Windows.Forms.Panel();
            this.comboBox2 = new System.Windows.Forms.ComboBox();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.lbTotal = new System.Windows.Forms.Label();
            this.btnLancar = new System.Windows.Forms.Button();
            this.dtgSoma = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dtgLojas = new System.Windows.Forms.DataGridView();
            this.Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Loja = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Qtde = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.btnExcluirLinhas = new System.Windows.Forms.Button();
            this.btnCancelar = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.label2 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.txtCodDistribuicao = new System.Windows.Forms.TextBox();
            this.dtpDataSelecionada = new System.Windows.Forms.DateTimePicker();
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabPage1 = new System.Windows.Forms.TabPage();
            this.dtgLancamentos = new System.Windows.Forms.DataGridView();
            this.G_ID = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Selecao = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.G_Produto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_Div = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_PrecoCusto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.G_CodFornecedor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabPage2 = new System.Windows.Forms.TabPage();
            this.btnSelecionarEmpresa = new System.Windows.Forms.Button();
            this.cbxFiltroEmpresa = new System.Windows.Forms.ComboBox();
            this.dtgEmpresaDetalhe = new System.Windows.Forms.DataGridView();
            this.RowdtgEmpresa_Id = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Produto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Qtde = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.RowdtgEmpresa_Fornecedor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tabPage3 = new System.Windows.Forms.TabPage();
            this.chart1 = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.grProdutos = new System.Windows.Forms.GroupBox();
            this.tabControl2 = new System.Windows.Forms.TabControl();
            this.tabFornecedor = new System.Windows.Forms.TabPage();
            this.txtValorPadrao = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.cbxSelecionaFornecedor = new System.Windows.Forms.ComboBox();
            this.txtValorCusto = new System.Windows.Forms.TextBox();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.tabGeral = new System.Windows.Forms.TabPage();
            this.txtQtdePadrao = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.txtQtdeDisponivel = new System.Windows.Forms.TextBox();
            this.txtQtdeRestate = new System.Windows.Forms.TextBox();
            this.label7 = new System.Windows.Forms.Label();
            this.cbxSelecionaProduto = new System.Windows.Forms.ComboBox();
            this.label6 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.label13 = new System.Windows.Forms.Label();
            this.btnGravarDistribuicao = new System.Windows.Forms.Button();
            this.panel1 = new System.Windows.Forms.Panel();
//.........这里部分代码省略.........
开发者ID:afsuporte,项目名称:Control-Manager-Plus,代码行数:101,代码来源:frmDistribuicaoPorLoja.Designer.cs


示例11: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WelcomeForm));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.settingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.manageUserToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.changePsswordToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.databaseManagementToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.restoreBackupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.startNewYearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.initializeDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.createDatabaseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerTrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.registerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unRegisterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.userHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.troubleshootingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.systemLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutEBusinessToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.btnPOS = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator14 = new System.Windows.Forms.ToolStripSeparator();
     this.btnInvoice = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btnStock = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomer = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompany = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.btnOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShop = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStrip_Reports = new System.Windows.Forms.ToolStrip();
     this.btnSalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
     this.btnPurchaseReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.btnDailySalesReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
     this.btnBuyerLedgerReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCustomerTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator18 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCompanyTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
     this.btnProfitReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCurrentCashReport = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.btnItemTransaction = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel4 = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.middlePanel = new System.Windows.Forms.Panel();
     this.lblSologon = new System.Windows.Forms.Label();
     this.lbRegistrationNo = new System.Windows.Forms.Label();
     this.lblPhoneNumber = new System.Windows.Forms.Label();
     this.lblAdress = new System.Windows.Forms.Label();
     this.panelToday = new System.Windows.Forms.Panel();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.lvSale = new System.Windows.Forms.ListView();
     this.colSNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colRNo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colCustomer = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTotal = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colPayment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lvPurchase = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label6 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panelClock = new System.Windows.Forms.Panel();
     this.lvStockSummary = new System.Windows.Forms.ListView();
     this.colItem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colStock = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colOnOrder = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLimit = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.btnRefresh = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
//.........这里部分代码省略.........
开发者ID:iMutex,项目名称:EBusiness,代码行数:101,代码来源:WelcomeForm.designer.cs


示例12: InitializeComponent

 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.tSeat = new System.Windows.Forms.ToolStripTextBox();
     this.payTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.orderTool = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolTech = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.btnRoom = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolAllOrder = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.btnCashierTable = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.btnDeposit = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolMember = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolPreprint = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel9 = new System.Windows.Forms.ToolStripLabel();
     this.toolPwd = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel10 = new System.Windows.Forms.ToolStripLabel();
     this.toolWarn = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel11 = new System.Windows.Forms.ToolStripLabel();
     this.toolExit = new System.Windows.Forms.ToolStripButton();
     this.seatContext = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CtxAddNote = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxLock = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxSop = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxRepay = new System.Windows.Forms.ToolStripMenuItem();
     this.CtxReprint = new System.Windows.Forms.ToolStripMenuItem();
     this.unWarnTool = new System.Windows.Forms.ToolStripMenuItem();
     this.undoTransferTool = new System.Windows.Forms.ToolStripMenuItem();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.currentUser = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel3 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.aviTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.useTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.payTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.lockTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.stopTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.warnTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.depositTip = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel2 = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip2 = new System.Windows.Forms.StatusStrip();
     this.LseatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel20 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatAvi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel21 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyTotal = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel22 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel23 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyPaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel24 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LseatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel25 = new System.Windows.Forms.ToolStripStatusLabel();
     this.LmoneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.moneyUnpaid = new System.Windows.Forms.ToolStripStatusLabel();
     this.seatPanel = new System.Windows.Forms.Panel();
     this.toolStrip1.SuspendLayout();
     this.seatContext.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.statusStrip2.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(64, 64);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tSeat,
     this.payTool,
     this.toolStripLabel2,
     this.orderTool,
     this.toolStripLabel5,
     this.toolTech,
     this.toolStripLabel3,
     this.btnRoom,
     this.toolStripLabel8,
     this.toolAllOrder,
     this.toolStripLabel4,
     this.btnCashierTable,
     this.toolStripLabel6,
//.........这里部分代码省略.........
开发者ID:huaminglee,项目名称:yousoftbath,代码行数:101,代码来源:MainWindow.designer.cs


示例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();
            System.Windows.Forms.ToolStrip commands;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CurrentStatusWindow));
            System.Windows.Forms.StatusStrip statusBar;
            System.Windows.Forms.ImageList explorerImages;
            this.refreshCommand = new System.Windows.Forms.ToolStripButton();
            this.currentStatus = new System.Windows.Forms.ToolStripStatusLabel();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.statusExplorer = new System.Windows.Forms.TreeView();
            this.statusDetails = new System.Windows.Forms.PropertyGrid();
            this.statusProgress = new System.Windows.Forms.ProgressBar();
            this.displayWorker = new System.ComponentModel.BackgroundWorker();
            this.refreshTimer = new System.Windows.Forms.Timer(this.components);
            commands = new System.Windows.Forms.ToolStrip();
            statusBar = new System.Windows.Forms.StatusStrip();
            explorerImages = new System.Windows.Forms.ImageList(this.components);
            commands.SuspendLayout();
            statusBar.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.SuspendLayout();
            // 
            // commands
            // 
            commands.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            commands.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.refreshCommand});
            commands.Location = new System.Drawing.Point(0, 0);
            commands.Name = "commands";
            commands.Size = new System.Drawing.Size(533, 25);
            commands.TabIndex = 0;
            commands.Text = "toolStrip1";
            // 
            // refreshCommand
            // 
            this.refreshCommand.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this.refreshCommand.Image = ((System.Drawing.Image)(resources.GetObject("refreshCommand.Image")));
            this.refreshCommand.ImageTransparentColor = System.Drawing.Color.Magenta;
            this.refreshCommand.Name = "refreshCommand";
            this.refreshCommand.Size = new System.Drawing.Size(23, 22);
            this.refreshCommand.Text = "Refresh";
            this.refreshCommand.Click += new System.EventHandler(this.refreshCommand_Click);
            // 
            // statusBar
            // 
            statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.currentStatus});
            statusBar.Location = new System.Drawing.Point(0, 366);
            statusBar.Name = "statusBar";
            statusBar.Size = new System.Drawing.Size(533, 22);
            statusBar.TabIndex = 1;
            statusBar.Text = "statusStrip1";
            // 
            // currentStatus
            // 
            this.currentStatus.Name = "currentStatus";
            this.currentStatus.Size = new System.Drawing.Size(518, 17);
            this.currentStatus.Spring = true;
            this.currentStatus.Text = "Loading status...";
            this.currentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // explorerImages
            // 
            explorerImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("explorerImages.ImageStream")));
            explorerImages.TransparentColor = System.Drawing.Color.Transparent;
            explorerImages.Images.SetKeyName(0, "Unknown");
            explorerImages.Images.SetKeyName(1, "CompletedSuccess");
            explorerImages.Images.SetKeyName(2, "CompletedFailed");
            explorerImages.Images.SetKeyName(3, "Pending");
            explorerImages.Images.SetKeyName(4, "Cancelled");
            explorerImages.Images.SetKeyName(5, "Running");
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 25);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.statusExplorer);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.statusDetails);
            this.splitContainer1.Panel2.Controls.Add(this.statusProgress);
            this.splitContainer1.Size = new System.Drawing.Size(533, 341);
            this.splitContainer1.SplitterDistance = 177;
            this.splitContainer1.TabIndex = 2;
            // 
            // statusExplorer
            // 
            this.statusExplorer.Dock = System.Windows.Forms.DockStyle.Fill;
//.........这里部分代码省略.........
开发者ID:kascomp,项目名称:CruiseControl.NET,代码行数:101,代码来源:CurrentStatusWindow.Designer.cs


示例14: InitializeComponent


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Forms.ToolStripButton类代码示例发布时间:2022-05-24
下一篇:
C# Forms.Timer类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap