当前位置: 首页>>代码示例>>C#>>正文


C# Forms.ToolStripLabel类代码示例

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


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

示例1: ParallaxToolStrip

        public ParallaxToolStrip(SerialParallax osc, GraphControl gc)
        {
            oscillo = osc;
            graphControl = gc;

            //
            // toolStrip2
            //
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.toolStrip.Dock = System.Windows.Forms.DockStyle.None;
            this.toolStrip.Location = new System.Drawing.Point(3, 0);
            this.toolStrip.Name = "toolStrip2";
            this.toolStrip.Size = new System.Drawing.Size(243, 25);
            this.toolStrip.TabIndex = 1;
            this.toolStrip.Text = "toolStrip2";

            this.triggerLabel = new System.Windows.Forms.ToolStripLabel();
            this.trigger = new System.Windows.Forms.ToolStripTextBox();
            this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
            this.triggerMode = new System.Windows.Forms.ToolStripComboBox();

            //
            // triggerLabel
            //
            this.triggerLabel.Name = "triggerLabel";
            this.triggerLabel.Size = new System.Drawing.Size(42, 22);
            this.triggerLabel.Text = "Trigger";
            this.toolStrip.Items.Add(this.triggerLabel);

            //
            // trigger
            //
            this.trigger.Name = "trigger";
            this.trigger.Size = new System.Drawing.Size(50, 25);
            this.trigger.Text = "0";
            this.trigger.Validating += new System.ComponentModel.CancelEventHandler(this.trigger_Validating);
            this.trigger.Validated += new System.EventHandler(this.trigger_Validated);
            this.toolStrip.Items.Add(this.trigger);

            //
            // triggerMode
            //
            this.triggerMode.Items.AddRange(new object[] {
            "ch1 ˄",
            "ch1 ˅",
            "ch2 ˄",
            "ch2 ˅",
            "ext ˄"});
            this.triggerMode.Name = "triggerMode";
            this.triggerMode.Size = new System.Drawing.Size(20, 25);
            this.triggerMode.SelectedIndexChanged += new System.EventHandler(this.triggerMode_SelectedIndexChanged);
            triggerMode.SelectedIndex = 0;
            this.toolStrip.Items.Add(this.triggerMode);

            //channels.SelectedIndex = 0;
            trigger.Text = "0";
            triggerMode.SelectedIndex = 0;
            oscillo.TriggerVoltage = (float.Parse(trigger.Text));
        }
开发者ID:valkuc,项目名称:xoscillo,代码行数:59,代码来源:ParallaxToolStrip.cs

示例2: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pictureBox = new System.Windows.Forms.PictureBox();
     this.tbImageBox = new System.Windows.Forms.ToolStrip();
     this.btnSave = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator0 = new System.Windows.Forms.ToolStripSeparator();
     this.btnCopy = new System.Windows.Forms.ToolStripButton();
     this.btnZoomIn = new System.Windows.Forms.ToolStripButton();
     this.lblColor = new System.Windows.Forms.ToolStripLabel();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.tbImageBox.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox
     //
     this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox.Location = new System.Drawing.Point(0, 26);
     this.pictureBox.Name = "pictureBox";
     this.pictureBox.Size = new System.Drawing.Size(58, 39);
     this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox.TabIndex = 0;
     this.pictureBox.TabStop = false;
     this.pictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox_MouseMove);
     //
     // tbImageBox
     //
     this.tbImageBox.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btnSave,
     this.toolStripSeparator0,
     this.btnCopy,
     this.btnZoomIn,
     this.lblColor});
     this.tbImageBox.Location = new System.Drawing.Point(0, 0);
     this.tbImageBox.Name = "tbImageBox";
     this.tbImageBox.Size = new System.Drawing.Size(204, 25);
     this.tbImageBox.TabIndex = 1;
     this.tbImageBox.Text = "toolStrip1";
     //
     // btnSave
     //
     this.btnSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnSave.Image = global::pyrale.Properties.Resources.disk;
     this.btnSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(23, 22);
     this.btnSave.Text = "Save Image to file...";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // toolStripSeparator0
     //
     this.toolStripSeparator0.Name = "toolStripSeparator0";
     this.toolStripSeparator0.Size = new System.Drawing.Size(6, 25);
     //
     // btnCopy
     //
     this.btnCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnCopy.Image = global::pyrale.Properties.Resources.page_white_copy;
     this.btnCopy.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnCopy.Name = "btnCopy";
     this.btnCopy.Size = new System.Drawing.Size(23, 22);
     this.btnCopy.Text = "Copy Image to clipboard";
     this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
     //
     // btnZoomIn
     //
     this.btnZoomIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnZoomIn.Image = global::pyrale.Properties.Resources.magnifier;
     this.btnZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnZoomIn.Name = "btnZoomIn";
     this.btnZoomIn.Size = new System.Drawing.Size(23, 22);
     this.btnZoomIn.Text = "Zoom In";
     this.btnZoomIn.Click += new System.EventHandler(this.btnZoomIn_Click);
     //
     // lblColor
     //
     this.lblColor.Name = "lblColor";
     this.lblColor.Size = new System.Drawing.Size(87, 22);
     this.lblColor.Text = "RGBA(0,0,0,0)";
     //
     // ImageBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.ClientSize = new System.Drawing.Size(204, 188);
     this.Controls.Add(this.tbImageBox);
     this.Controls.Add(this.pictureBox);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ImageBox";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "ImageBox";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.tbImageBox.ResumeLayout(false);
//.........这里部分代码省略.........
开发者ID:Serval105,项目名称:pyramidsleveleditor,代码行数:101,代码来源:ImageBox.designer.cs

示例3: InitializeComponent

 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewResults = new System.Windows.Forms.ListView();
     this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineText = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label_Statistics = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.textBoxSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox_Scope = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripDropDownButton_Options = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripMenuItem_RegExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MatchCase = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WholeWord = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WordStart = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewResults
     //
     this.listViewResults.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.listViewResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTitle,
     this.columnHeaderLineNumber,
     this.columnHeaderLineText});
     this.listViewResults.FullRowSelect = true;
     this.listViewResults.GridLines = true;
     this.listViewResults.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewResults.Location = new System.Drawing.Point(3, 28);
     this.listViewResults.MultiSelect = false;
     this.listViewResults.Name = "listViewResults";
     this.listViewResults.Size = new System.Drawing.Size(530, 147);
     this.listViewResults.TabIndex = 5;
     this.listViewResults.UseCompatibleStateImageBehavior = false;
     this.listViewResults.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderTitle
     //
     this.columnHeaderTitle.Text = "Script";
     this.columnHeaderTitle.Width = 147;
     //
     // columnHeaderLineNumber
     //
     this.columnHeaderLineNumber.Text = "Line #";
     this.columnHeaderLineNumber.Width = 73;
     //
     // columnHeaderLineText
     //
     this.columnHeaderLineText.Text = "Text";
     this.columnHeaderLineText.Width = 278;
     //
     // label_Statistics
     //
     this.label_Statistics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Statistics.AutoSize = true;
     this.label_Statistics.Location = new System.Drawing.Point(3, 178);
     this.label_Statistics.Name = "label_Statistics";
     this.label_Statistics.Size = new System.Drawing.Size(0, 13);
     this.label_Statistics.TabIndex = 10;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel1.Text = "Find:";
     //
     // textBoxSearch
     //
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(100, 25);
     this.textBoxSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBox_SearchString_KeyDown);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "In:";
     //
     // toolStripComboBox_Scope
     //
     this.toolStripComboBox_Scope.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox_Scope.Items.AddRange(new object[] {
     "Open Scripts",
     "All Scripts"});
     this.toolStripComboBox_Scope.Name = "toolStripComboBox_Scope";
     this.toolStripComboBox_Scope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripDropDownButton_Options
     //
     this.toolStripDropDownButton_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
//.........这里部分代码省略.........
开发者ID:borisblizzard,项目名称:arcreator,代码行数:101,代码来源:SearchControl.designer.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()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
//.........这里部分代码省略.........
开发者ID:mcorrientes,项目名称:Web-Security-Toolset,代码行数:101,代码来源:frmMain.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.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripLabel toolStripLabel1;
            System.Windows.Forms.TableLayoutPanel toolstripTable;
            TreelistView.TreeListColumn treeListColumn1 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn2 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn3 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Rate", "Rate")));
            TreelistView.TreeListColumn treeListColumn4 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Offset", "Offset")));
            TreelistView.TreeListColumn treeListColumn5 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Stride", "Stride")));
            TreelistView.TreeListColumn treeListColumn6 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("bytelen", "Byte Len")));
            TreelistView.TreeListColumn treeListColumn7 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.GroupBox groupBox2;
            TreelistView.TreeListColumn treeListColumn8 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Idx", "Index")));
            TreelistView.TreeListColumn treeListColumn9 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Name", "Name")));
            TreelistView.TreeListColumn treeListColumn10 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Location", "Location")));
            TreelistView.TreeListColumn treeListColumn11 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn12 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Format", "Format")));
            TreelistView.TreeListColumn treeListColumn13 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Offset", "Offset")));
            TreelistView.TreeListColumn treeListColumn14 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            System.Windows.Forms.GroupBox groupBox44;
            TreelistView.TreeListColumn treeListColumn15 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn16 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn17 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn18 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn19 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn20 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents1", "Contents")));
            TreelistView.TreeListColumn treeListColumn21 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents2", "")));
            TreelistView.TreeListColumn treeListColumn23 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn24 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn25 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn26 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn27 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn28 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Byte Range", "Byte Range")));
            TreelistView.TreeListColumn treeListColumn29 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn30 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn31 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn32 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn33 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn34 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn35 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn36 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents1", "Contents")));
            TreelistView.TreeListColumn treeListColumn37 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents2", "")));
            TreelistView.TreeListColumn treeListColumn39 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn40 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn41 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn42 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn43 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn44 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Byte Range", "Byte Range")));
            TreelistView.TreeListColumn treeListColumn45 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn46 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn47 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn48 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn49 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn50 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn51 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn52 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents1", "Contents")));
            TreelistView.TreeListColumn treeListColumn53 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents2", "")));
            TreelistView.TreeListColumn treeListColumn55 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn56 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn57 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn58 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn59 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn60 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Byte Range", "Byte Range")));
            TreelistView.TreeListColumn treeListColumn61 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn62 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn63 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn64 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn65 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn66 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Type", "Type")));
            TreelistView.TreeListColumn treeListColumn67 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Resource", "Resource")));
            TreelistView.TreeListColumn treeListColumn68 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents1", "Contents")));
            TreelistView.TreeListColumn treeListColumn69 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Contents2", "")));
            TreelistView.TreeListColumn treeListColumn71 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn72 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("PlusMinus", "")));
            TreelistView.TreeListColumn treeListColumn73 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Set", "Set")));
            TreelistView.TreeListColumn treeListColumn74 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Binding", "Binding")));
            TreelistView.TreeListColumn treeListColumn75 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Buffer", "Buffer")));
            TreelistView.TreeListColumn treeListColumn76 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Byte Range", "Byte Range")));
            TreelistView.TreeListColumn treeListColumn77 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Size", "Size")));
            TreelistView.TreeListColumn treeListColumn78 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Go", "Go")));
            TreelistView.TreeListColumn treeListColumn79 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn80 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("X", "X")));
            TreelistView.TreeListColumn treeListColumn81 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Y", "Y")));
            TreelistView.TreeListColumn treeListColumn82 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn83 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            TreelistView.TreeListColumn treeListColumn84 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("MinDepth", "MinDepth")));
            TreelistView.TreeListColumn treeListColumn85 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("MaxDepth", "MaxDepth")));
            System.Windows.Forms.GroupBox groupBox42;
            TreelistView.TreeListColumn treeListColumn86 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Slot", "Slot")));
            TreelistView.TreeListColumn treeListColumn87 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("X", "X")));
            TreelistView.TreeListColumn treeListColumn88 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Y", "Y")));
            TreelistView.TreeListColumn treeListColumn89 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Width", "Width")));
            TreelistView.TreeListColumn treeListColumn90 = ((TreelistView.TreeListColumn)(new TreelistView.TreeListColumn("Height", "Height")));
            System.Windows.Forms.Label label7;
            System.Windows.Forms.Label label25;
//.........这里部分代码省略.........
开发者ID:Cry-Filami,项目名称:renderdoc,代码行数:101,代码来源:VulkanPipelineStateViewer.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmABCDebugger));
     this.txtDebugText = new System.Windows.Forms.TextBox();
     this.mnuMain = new System.Windows.Forms.MenuStrip();
     this.tsmiOption = new System.Windows.Forms.ToolStripMenuItem();
     this.tsmiSoundScore = new System.Windows.Forms.ToolStripMenuItem();
     this.timAutoScroll = new System.Windows.Forms.Timer(this.components);
     this.sstMain = new System.Windows.Forms.StatusStrip();
     this.pnlBottom = new System.Windows.Forms.Panel();
     this.pnlBottomRight = new System.Windows.Forms.Panel();
     this.dgvPartData = new System.Windows.Forms.DataGridView();
     this.pnlBottomLeft = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pnlMain = new System.Windows.Forms.Panel();
     this.pnlScore = new System.Windows.Forms.Panel();
     this.picMain = new System.Windows.Forms.PictureBox();
     this.pnlKeyBord = new System.Windows.Forms.Panel();
     this.picKeyBord = new System.Windows.Forms.PictureBox();
     this.tsMain = new System.Windows.Forms.ToolStrip();
     this.txbtnStop = new System.Windows.Forms.ToolStripButton();
     this.tsbtnPause = new System.Windows.Forms.ToolStripButton();
     this.tsbtnStart = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tslblTime = new System.Windows.Forms.ToolStripLabel();
     this.mnuMain.SuspendLayout();
     this.pnlBottom.SuspendLayout();
     this.pnlBottomRight.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvPartData)).BeginInit();
     this.pnlBottomLeft.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlScore.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picMain)).BeginInit();
     this.pnlKeyBord.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picKeyBord)).BeginInit();
     this.tsMain.SuspendLayout();
     this.SuspendLayout();
     //
     // txtDebugText
     //
     this.txtDebugText.Location = new System.Drawing.Point(4, 4);
     this.txtDebugText.Multiline = true;
     this.txtDebugText.Name = "txtDebugText";
     this.txtDebugText.Size = new System.Drawing.Size(196, 34);
     this.txtDebugText.TabIndex = 0;
     //
     // mnuMain
     //
     this.mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiOption});
     this.mnuMain.Location = new System.Drawing.Point(0, 0);
     this.mnuMain.Name = "mnuMain";
     this.mnuMain.Size = new System.Drawing.Size(831, 26);
     this.mnuMain.TabIndex = 1;
     this.mnuMain.Text = "menuStrip1";
     //
     // tsmiOption
     //
     this.tsmiOption.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.tsmiSoundScore});
     this.tsmiOption.Name = "tsmiOption";
     this.tsmiOption.Size = new System.Drawing.Size(80, 22);
     this.tsmiOption.Text = "オプション";
     //
     // tsmiSoundScore
     //
     this.tsmiSoundScore.Name = "tsmiSoundScore";
     this.tsmiSoundScore.Size = new System.Drawing.Size(100, 22);
     this.tsmiSoundScore.Text = "音源";
     //
     // timAutoScroll
     //
     this.timAutoScroll.Interval = 1;
     this.timAutoScroll.Tick += new System.EventHandler(this.timAutoScroll_Tick);
     //
     // sstMain
     //
     this.sstMain.Location = new System.Drawing.Point(0, 503);
     this.sstMain.Name = "sstMain";
     this.sstMain.Size = new System.Drawing.Size(831, 22);
     this.sstMain.TabIndex = 6;
     this.sstMain.Text = "statusStrip1";
     //
     // pnlBottom
     //
     this.pnlBottom.Controls.Add(this.pnlBottomRight);
     this.pnlBottom.Controls.Add(this.pnlBottomLeft);
     this.pnlBottom.Controls.Add(this.panel1);
     this.pnlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.pnlBottom.Location = new System.Drawing.Point(0, 339);
     this.pnlBottom.Name = "pnlBottom";
     this.pnlBottom.Size = new System.Drawing.Size(831, 164);
     this.pnlBottom.TabIndex = 7;
     //
     // pnlBottomRight
//.........这里部分代码省略.........
开发者ID:aquavit,项目名称:MoEToiro,代码行数:101,代码来源:frmABCDebugger.designer.cs

示例7: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.dgvStatementHeadData = new System.Windows.Forms.DataGridView();
     this.dgvStatementDetailData = new System.Windows.Forms.DataGridView();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchSaleId = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.txtSearchCustomer = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btnShowAll = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.btnprtInvoice = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.btnCancle = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementHeadData)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatementDetailData)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvStatementHeadData
     //
     this.dgvStatementHeadData.AllowUserToAddRows = false;
     this.dgvStatementHeadData.AllowUserToDeleteRows = false;
     this.dgvStatementHeadData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementHeadData, 2);
     this.dgvStatementHeadData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementHeadData.Location = new System.Drawing.Point(3, 43);
     this.dgvStatementHeadData.Name = "dgvStatementHeadData";
     this.dgvStatementHeadData.ReadOnly = true;
     this.dgvStatementHeadData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementHeadData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementHeadData.TabIndex = 86;
     this.dgvStatementHeadData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatementHeadData_CellMouseUp);
     //
     // dgvStatementDetailData
     //
     this.dgvStatementDetailData.AllowUserToAddRows = false;
     this.dgvStatementDetailData.AllowUserToDeleteRows = false;
     this.dgvStatementDetailData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.tableLayoutPanel1.SetColumnSpan(this.dgvStatementDetailData, 2);
     this.dgvStatementDetailData.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvStatementDetailData.Location = new System.Drawing.Point(3, 313);
     this.dgvStatementDetailData.Name = "dgvStatementDetailData";
     this.dgvStatementDetailData.ReadOnly = true;
     this.dgvStatementDetailData.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvStatementDetailData.Size = new System.Drawing.Size(929, 264);
     this.dgvStatementDetailData.TabIndex = 87;
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.txtSearchSaleId,
     this.toolStripSeparator1,
     this.toolStripLabel2,
     this.txtSearchCustomer,
     this.toolStripSeparator2,
     this.toolStripSeparator3,
     this.btnShowAll,
     this.toolStripSeparator4,
     this.btnprtInvoice,
     this.toolStripSeparator5,
     this.btnCancle,
     this.toolStripSeparator6});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(935, 25);
     this.toolStrip1.TabIndex = 91;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(106, 22);
     this.toolStripLabel1.Text = "ค้นหา :เลขที่การขาย : ";
     //
     // txtSearchSaleId
     //
     this.txtSearchSaleId.Name = "txtSearchSaleId";
     this.txtSearchSaleId.Size = new System.Drawing.Size(200, 25);
     this.txtSearchSaleId.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSearchSaleId_KeyDown);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel2
//.........这里部分代码省略.........
开发者ID:itktc,项目名称:projectktc-v2,代码行数:101,代码来源:frmShowStatement.designer.cs

示例8: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCategory));
     this.bindingNavigator1 = new System.Windows.Forms.BindingNavigator(this.components);
     this.categoryBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.newDataSet = new PEIMSV3Cs.NewDataSet();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     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.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.Panel1 = new System.Windows.Forms.Panel();
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.SaveButton = new System.Windows.Forms.Button();
     this.SearchIDButton = new System.Windows.Forms.Button();
     this.ExitButton = new System.Windows.Forms.Button();
     this.UpdateButton = new System.Windows.Forms.Button();
     this.DeleteButton = new System.Windows.Forms.Button();
     this.AddButton = new System.Windows.Forms.Button();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.listBox1 = new System.Windows.Forms.ListBox();
     this.categoryIDLabel = new System.Windows.Forms.Label();
     this.categoryIDTextBox = new System.Windows.Forms.TextBox();
     this.categoryNameLabel = new System.Windows.Forms.Label();
     this.categoryNameTextBox = new System.Windows.Forms.TextBox();
     this.categoryDescriptionLabel = new System.Windows.Forms.Label();
     this.categoryDescriptionTextBox = new System.Windows.Forms.TextBox();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.categoryDataGridView = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel3 = new System.Windows.Forms.Panel();
     this.panel4 = new System.Windows.Forms.Panel();
     this.panel5 = new System.Windows.Forms.Panel();
     this.panel6 = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator1)).BeginInit();
     this.bindingNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.newDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.Panel1.SuspendLayout();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.tabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.categoryDataGridView)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // bindingNavigator1
     //
     this.bindingNavigator1.AddNewItem = null;
     this.bindingNavigator1.BindingSource = this.categoryBindingSource;
     this.bindingNavigator1.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator1.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigator1.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator1.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator1.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator1.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator1.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator1.Name = "bindingNavigator1";
     this.bindingNavigator1.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this.bindingNavigator1.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.bindingNavigator1.Size = new System.Drawing.Size(612, 25);
     this.bindingNavigator1.TabIndex = 0;
     this.bindingNavigator1.Text = "bindingNavigator1";
     //
     // categoryBindingSource
     //
     this.categoryBindingSource.DataMember = "category";
     this.categoryBindingSource.DataSource = this.newDataSet;
     //
//.........这里部分代码省略.........
开发者ID:votrongdao,项目名称:PEIMS,代码行数:101,代码来源:frmCategory.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.ToolStripLabel toolStripLabelArea;
            DOL.Tools.QuestDesigner.Controls.HeaderStrip headerStripArea;
            System.Windows.Forms.ToolStripLabel toolStripLabel1;
            this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.pasteLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.showOnMapToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.dataGridArea = new System.Windows.Forms.DataGridView();
            this.colObjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colName = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colRegionID = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.colAreaType = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.propertyGridArea = new System.Windows.Forms.PropertyGrid();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            toolStripLabelArea = new System.Windows.Forms.ToolStripLabel();
            headerStripArea = new DOL.Tools.QuestDesigner.Controls.HeaderStrip();
            toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
            this.contextMenuStrip.SuspendLayout();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridArea)).BeginInit();
            headerStripArea.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripLabelArea
            // 
            toolStripLabelArea.Name = "toolStripLabelArea";
            toolStripLabelArea.Size = new System.Drawing.Size(53, 22);
            toolStripLabelArea.Text = "Areas";
            // 
            // contextMenuStrip
            // 
            this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.copyLocationToolStripMenuItem,
            this.pasteLocationToolStripMenuItem,
            this.showOnMapToolStripMenuItem});
            this.contextMenuStrip.Name = "contextMenuStrip";
            this.contextMenuStrip.Size = new System.Drawing.Size(156, 92);
            this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
            // 
            // pasteLocationToolStripMenuItem
            // 
            this.pasteLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.paste;
            this.pasteLocationToolStripMenuItem.Name = "pasteLocationToolStripMenuItem";
            this.pasteLocationToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
            this.pasteLocationToolStripMenuItem.Text = "Paste Location";
            this.pasteLocationToolStripMenuItem.Click += new System.EventHandler(this.pasteLocationToolStripMenuItem_Click);
            // 
            // showOnMapToolStripMenuItem
            // 
            this.showOnMapToolStripMenuItem.Enabled = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.ShowTaskPane;
            this.showOnMapToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.area;
            this.showOnMapToolStripMenuItem.Name = "showOnMapToolStripMenuItem";
            this.showOnMapToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
            this.showOnMapToolStripMenuItem.Text = "Show on Map";
            this.showOnMapToolStripMenuItem.Click += new System.EventHandler(this.showOnMapToolStripMenuItem_Click);
            // 
            // splitContainer1
            // 
            this.splitContainer1.DataBindings.Add(new System.Windows.Forms.Binding("SplitterDistance", global::DOL.Tools.QuestDesigner.Properties.Settings.Default, "AreaSplitterDistance", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            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.dataGridArea);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.propertyGridArea);
            this.splitContainer1.Size = new System.Drawing.Size(458, 125);
            this.splitContainer1.SplitterDistance = global::DOL.Tools.QuestDesigner.Properties.Settings.Default.AreaSplitterDistance;
            this.splitContainer1.TabIndex = 3;
            // 
            // dataGridArea
            // 
            this.dataGridArea.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridArea.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.colObjectName,
            this.colName,
            this.colRegionID,
            this.colAreaType});
            this.dataGridArea.ContextMenuStrip = this.contextMenuStrip;
            this.dataGridArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dataGridArea.Location = new System.Drawing.Point(0, 0);
            this.dataGridArea.Name = "dataGridArea";
            this.dataGridArea.Size = new System.Drawing.Size(350, 125);
            this.dataGridArea.TabIndex = 0;
            this.dataGridArea.RowValidating += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dataGridArea_RowValidating);
            this.dataGridArea.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridArea_DefaultValuesNeeded);
//.........这里部分代码省略.........
开发者ID:Dawn-of-Light,项目名称:QuestDesigner,代码行数:101,代码来源:Area.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TableCashierForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.ToolSmsSet = new System.Windows.Forms.ToolStripButton();
     this.ToolPhoneBook = new System.Windows.Forms.ToolStripButton();
     this.printTool = new System.Windows.Forms.ToolStripButton();
     this.clearTool = new System.Windows.Forms.ToolStripButton();
     this.toolExit = new System.Windows.Forms.ToolStripButton();
     this.panel2 = new System.Windows.Forms.Panel();
     this.dgv = new System.Windows.Forms.DataGridView();
     this.名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.手牌号 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.结账时间 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel1 = new System.Windows.Forms.Panel();
     this.ptTimeList = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(48, 48);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ToolSmsSet,
     this.toolStripLabel1,
     this.ToolPhoneBook,
     this.toolStripLabel2,
     this.printTool,
     this.toolStripLabel3,
     this.clearTool,
     this.toolStripLabel4,
     this.toolExit});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.Size = new System.Drawing.Size(533, 79);
     this.toolStrip1.TabIndex = 3;
     this.toolStrip1.Text = "toolStrip1";
     //
     // ToolSmsSet
     //
     this.ToolSmsSet.Font = new System.Drawing.Font("微软雅黑", 13F);
     this.ToolSmsSet.Image = ((System.Drawing.Image)(resources.GetObject("ToolSmsSet.Image")));
     this.ToolSmsSet.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.ToolSmsSet.Name = "ToolSmsSet";
     this.ToolSmsSet.Size = new System.Drawing.Size(86, 76);
     this.ToolSmsSet.Text = "短信设置";
     this.ToolSmsSet.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.ToolSmsSet.Click += new System.EventHandler(this.ToolSmsSet_Click);
     //
     // ToolPhoneBook
     //
     this.ToolPhoneBook.Font = new System.Drawing.Font("微软雅黑", 13F);
     this.ToolPhoneBook.Image = ((System.Drawing.Image)(resources.GetObject("ToolPhoneBook.Image")));
     this.ToolPhoneBook.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.ToolPhoneBook.Name = "ToolPhoneBook";
     this.ToolPhoneBook.Size = new System.Drawing.Size(86, 76);
     this.ToolPhoneBook.Text = "发送号码";
     this.ToolPhoneBook.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.ToolPhoneBook.Click += new System.EventHandler(this.ToolPhoneBook_Click);
     //
     // printTool
     //
     this.printTool.Font = new System.Drawing.Font("微软雅黑", 13F);
     this.printTool.Image = ((System.Drawing.Image)(resources.GetObject("printTool.Image")));
     this.printTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.printTool.Name = "printTool";
     this.printTool.Size = new System.Drawing.Size(52, 76);
     this.printTool.Text = "打印";
     this.printTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.printTool.Click += new System.EventHandler(this.printTool_Click);
     //
     // clearTool
     //
     this.clearTool.Font = new System.Drawing.Font("微软雅黑", 13F);
     this.clearTool.Image = ((System.Drawing.Image)(resources.GetObject("clearTool.Image")));
     this.clearTool.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.clearTool.Name = "clearTool";
     this.clearTool.Size = new System.Drawing.Size(52, 76);
     this.clearTool.Text = "夜审";
     this.clearTool.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.clearTool.Click += new System.EventHandler(this.clearTool_Click);
     //
     // toolExit
//.........这里部分代码省略.........
开发者ID:huaminglee,项目名称:yousoftbath,代码行数:101,代码来源:TableCashierForm.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(DataGridBaseView));
     this.bindingNavigator = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.buttonSave = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     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.dataGridView = new System.Windows.Forms.DataGridView();
     this.buttonCancel = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigator)).BeginInit();
     this.bindingNavigator.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
     this.SuspendLayout();
     //
     // bindingNavigator
     //
     this.bindingNavigator.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigator.BindingSource = this.bindingSource;
     this.bindingNavigator.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigator.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigator.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.buttonSave,
     this.buttonCancel,
     this.toolStripSeparator1,
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem});
     this.bindingNavigator.Location = new System.Drawing.Point(0, 0);
     this.bindingNavigator.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigator.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigator.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigator.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigator.Name = "bindingNavigator";
     this.bindingNavigator.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigator.Size = new System.Drawing.Size(636, 25);
     this.bindingNavigator.TabIndex = 0;
     this.bindingNavigator.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingSource
     //
     this.bindingSource.ListChanged += new System.ComponentModel.ListChangedEventHandler(this.bindingSource_ListChanged);
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(35, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // buttonSave
     //
     this.buttonSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Size = new System.Drawing.Size(23, 22);
     this.buttonSave.Text = "Save";
//.........这里部分代码省略.........
开发者ID:helgihaf,项目名称:Alpha,代码行数:101,代码来源:DataGridBaseView.Designer+-+Copy.cs

示例12: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OrderForm));
     this.ux_labelOrderDate = new System.Windows.Forms.Label();
     this.ux_labelOriginalOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOriginalOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_labelLocalNumber = new System.Windows.Forms.Label();
     this.ux_textboxLocalNumber = new System.Windows.Forms.TextBox();
     this.ux_groupbox1 = new System.Windows.Forms.GroupBox();
     this.ux_labelSpecialInstructions = new System.Windows.Forms.Label();
     this.ux_labelSource = new System.Windows.Forms.Label();
     this.ux_textboxSpecialInstructions = new System.Windows.Forms.TextBox();
     this.ux_labelNote = new System.Windows.Forms.Label();
     this.ux_textboxActedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxSource = new System.Windows.Forms.TextBox();
     this.ux_textboxNote = new System.Windows.Forms.TextBox();
     this.ux_labelShipTo = new System.Windows.Forms.Label();
     this.ux_textboxOrderedDate = new System.Windows.Forms.TextBox();
     this.ux_textboxShipTo = new System.Windows.Forms.TextBox();
     this.ux_textboxOrderObtainedVia = new System.Windows.Forms.TextBox();
     this.ux_textboxFinalDestination = new System.Windows.Forms.TextBox();
     this.ux_labelOrderObtainedVia = new System.Windows.Forms.Label();
     this.ux_labelRequestor = new System.Windows.Forms.Label();
     this.ux_checkboxIsSupplyLow = new System.Windows.Forms.CheckBox();
     this.ux_labelFinalDestination = new System.Windows.Forms.Label();
     this.ux_checkboxIsCompleted = new System.Windows.Forms.CheckBox();
     this.ux_textboxRequestor = new System.Windows.Forms.TextBox();
     this.ux_comboboxStatus = new System.Windows.Forms.ComboBox();
     this.ux_labelStatus = new System.Windows.Forms.Label();
     this.ux_comboboxOrderType = new System.Windows.Forms.ComboBox();
     this.ux_labelActedDate = new System.Windows.Forms.Label();
     this.ux_labelOrderType = new System.Windows.Forms.Label();
     this.ux_bindingnavigatorForm = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     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.ux_labelOrderRequestID = new System.Windows.Forms.Label();
     this.ux_textboxOrderRequestID = new System.Windows.Forms.TextBox();
     this.ux_textboxItems = new System.Windows.Forms.TextBox();
     this.ux_labelItems = new System.Windows.Forms.Label();
     this.ux_groupbox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ux_bindingnavigatorForm)).BeginInit();
     this.ux_bindingnavigatorForm.SuspendLayout();
     this.SuspendLayout();
     //
     // ux_labelOrderDate
     //
     this.ux_labelOrderDate.AutoSize = true;
     this.ux_labelOrderDate.Location = new System.Drawing.Point(6, 10);
     this.ux_labelOrderDate.Name = "ux_labelOrderDate";
     this.ux_labelOrderDate.Size = new System.Drawing.Size(59, 13);
     this.ux_labelOrderDate.TabIndex = 1;
     this.ux_labelOrderDate.Tag = "ordered_date";
     this.ux_labelOrderDate.Text = "Order Date";
     //
     // ux_labelOriginalOrderRequestID
     //
     this.ux_labelOriginalOrderRequestID.AutoSize = true;
     this.ux_labelOriginalOrderRequestID.Location = new System.Drawing.Point(331, 10);
     this.ux_labelOriginalOrderRequestID.Name = "ux_labelOriginalOrderRequestID";
     this.ux_labelOriginalOrderRequestID.Size = new System.Drawing.Size(111, 13);
     this.ux_labelOriginalOrderRequestID.TabIndex = 3;
     this.ux_labelOriginalOrderRequestID.Tag = "original_order_request_id";
     this.ux_labelOriginalOrderRequestID.Text = "Original Order Number";
     //
     // ux_textboxOriginalOrderRequestID
     //
     this.ux_textboxOriginalOrderRequestID.Location = new System.Drawing.Point(334, 26);
     this.ux_textboxOriginalOrderRequestID.Name = "ux_textboxOriginalOrderRequestID";
     this.ux_textboxOriginalOrderRequestID.Size = new System.Drawing.Size(120, 20);
     this.ux_textboxOriginalOrderRequestID.TabIndex = 1;
     this.ux_textboxOriginalOrderRequestID.Tag = "original_order_request_id";
     //
     // ux_labelLocalNumber
     //
     this.ux_labelLocalNumber.AutoSize = true;
     this.ux_labelLocalNumber.Location = new System.Drawing.Point(6, 48);
     this.ux_labelLocalNumber.Name = "ux_labelLocalNumber";
     this.ux_labelLocalNumber.Size = new System.Drawing.Size(73, 13);
     this.ux_labelLocalNumber.TabIndex = 5;
     this.ux_labelLocalNumber.Tag = "local_number";
     this.ux_labelLocalNumber.Text = "Local Number";
     //
     // ux_textboxLocalNumber
     //
     this.ux_textboxLocalNumber.Location = new System.Drawing.Point(6, 63);
     this.ux_textboxLocalNumber.Name = "ux_textboxLocalNumber";
//.........这里部分代码省略.........
开发者ID:egacheru,项目名称:G2,代码行数:101,代码来源:OrderForm.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(XnatWebBrowserComponentControl));
     this._browser = new System.Windows.Forms.WebBrowser();
     this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
     this._statusBar = new System.Windows.Forms.StatusStrip();
     this._browserProgress = new System.Windows.Forms.ToolStripProgressBar();
     this._browserStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this._toolbar = new System.Windows.Forms.ToolStrip();
     this._back = new System.Windows.Forms.ToolStripButton();
     this._forward = new System.Windows.Forms.ToolStripButton();
     this._stop = new System.Windows.Forms.ToolStripButton();
     this._refresh = new System.Windows.Forms.ToolStripButton();
     this._address = new System.Windows.Forms.ToolStripComboBox();
     this._go = new System.Windows.Forms.ToolStripButton();
     this._progressLogo = new System.Windows.Forms.ToolStripLabel();
     this._shortcutToolbar = new System.Windows.Forms.ToolStrip();
     this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
     this.toolStripContainer1.ContentPanel.SuspendLayout();
     this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
     this.toolStripContainer1.SuspendLayout();
     this._statusBar.SuspendLayout();
     this._toolbar.SuspendLayout();
     this.SuspendLayout();
     //
     // _browser
     //
     this._browser.Dock = System.Windows.Forms.DockStyle.Fill;
     this._browser.Location = new System.Drawing.Point(0, 0);
     this._browser.MinimumSize = new System.Drawing.Size(20, 20);
     this._browser.Name = "_browser";
     this._browser.Size = new System.Drawing.Size(584, 440);
     this._browser.TabIndex = 0;
     //
     // toolStripContainer1
     //
     //
     // toolStripContainer1.BottomToolStripPanel
     //
     this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this._statusBar);
     //
     // toolStripContainer1.ContentPanel
     //
     this.toolStripContainer1.ContentPanel.Controls.Add(this._browser);
     this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(584, 440);
     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(584, 526);
     this.toolStripContainer1.TabIndex = 1;
     this.toolStripContainer1.Text = "toolStripContainer1";
     //
     // toolStripContainer1.TopToolStripPanel
     //
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._toolbar);
     this.toolStripContainer1.TopToolStripPanel.Controls.Add(this._shortcutToolbar);
     //
     // _statusBar
     //
     this._statusBar.Dock = System.Windows.Forms.DockStyle.None;
     this._statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._browserProgress,
     this._browserStatus});
     this._statusBar.Location = new System.Drawing.Point(0, 0);
     this._statusBar.Name = "_statusBar";
     this._statusBar.Size = new System.Drawing.Size(584, 22);
     this._statusBar.TabIndex = 1;
     this._statusBar.Text = "statusStrip1";
     //
     // _browserProgress
     //
     this._browserProgress.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this._browserProgress.Name = "_browserProgress";
     this._browserProgress.Size = new System.Drawing.Size(100, 16);
     //
     // _browserStatus
     //
     this._browserStatus.Name = "_browserStatus";
     this._browserStatus.Size = new System.Drawing.Size(0, 17);
     //
     // _toolbar
     //
     this._toolbar.Dock = System.Windows.Forms.DockStyle.None;
     this._toolbar.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this._toolbar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this._toolbar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this._back,
     this._forward,
     this._stop,
     this._refresh,
     this._address,
     this._go,
     this._progressLogo});
     this._toolbar.Location = new System.Drawing.Point(0, 0);
     this._toolbar.Name = "_toolbar";
     this._toolbar.Size = new System.Drawing.Size(584, 39);
//.........这里部分代码省略.........
开发者ID:CuriousX,项目名称:annotation-and-image-markup,代码行数:101,代码来源:XnatWebBrowserComponentControl.designer.cs

示例14: 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(frmXuLyNhapKho));
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus_Themmoi = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_In = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_Thanhtoan = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatus_InMaVach = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.palNhap = new System.Windows.Forms.Panel();
     this.label5 = new System.Windows.Forms.Label();
     this.chekChonLoai = new System.Windows.Forms.CheckBox();
     this.lblMaHoaDonNhap = new System.Windows.Forms.Label();
     this.lblTenNhaCungCap = new System.Windows.Forms.Label();
     this.txtTygia = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.cbxTienTe_TyGia = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.btnTimMadatmuahang = new System.Windows.Forms.Button();
     this.txtMadondathang = new System.Windows.Forms.TextBox();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.makHanthanhtoan = new System.Windows.Forms.MaskedTextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtnguoigiaohang = new System.Windows.Forms.TextBox();
     this.btnTimnhacungcap = new System.Windows.Forms.Button();
     this.lblDiengiai = new System.Windows.Forms.Label();
     this.txtDiengiai = new System.Windows.Forms.TextBox();
     this.cbxHinhthucthanhtoan = new System.Windows.Forms.ComboBox();
     this.lblHinhthucthanhtoan = new System.Windows.Forms.Label();
     this.cbxKhoHang = new System.Windows.Forms.ComboBox();
     this.lblKhohang = new System.Windows.Forms.Label();
     this.lblNguoigiaohang = new System.Windows.Forms.Label();
     this.txtNohienthoi = new System.Windows.Forms.TextBox();
     this.lblNohienthoi = new System.Windows.Forms.Label();
     this.lblDinhdangngay = new System.Windows.Forms.LinkLabel();
     this.makNgaydonhang = new System.Windows.Forms.MaskedTextBox();
     this.lblNgaydonhang = new System.Windows.Forms.Label();
     this.txtManhacungcap = new System.Windows.Forms.TextBox();
     this.txtSodonhang = new System.Windows.Forms.TextBox();
     this.lblManhacungcap = new System.Windows.Forms.Label();
     this.lblSodonhang = new System.Windows.Forms.Label();
     this.palXem = new System.Windows.Forms.Panel();
     this.txtTienCKTM0 = new System.Windows.Forms.TextBox();
     this.txtCKTM0 = new System.Windows.Forms.TextBox();
     this.lbtinhtrang = new System.Windows.Forms.Label();
     this.txtGiatrigiatang = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.txtTienhang = new System.Windows.Forms.TextBox();
     this.txtChietkhau = new System.Windows.Forms.TextBox();
     this.lblChietkhau_Tienhang = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.txtThanhtoanngay = new System.Windows.Forms.TextBox();
     this.txtTienCKTM = new System.Windows.Forms.TextBox();
     this.lblPhantram = new System.Windows.Forms.LinkLabel();
     this.txtCKTM = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtTienTraLai = new System.Windows.Forms.TextBox();
     this.lblTongtien = new System.Windows.Forms.Label();
     this.txtTongThanhToan = new System.Windows.Forms.TextBox();
     this.lblPhivanchuyen_Phikhac = new System.Windows.Forms.Label();
     this.grbDataGridview = new System.Windows.Forms.GroupBox();
     this.dgvInsertOrder = new System.Windows.Forms.DataGridView();
     this.palThem = new System.Windows.Forms.Panel();
     this.toolStrip_Insert = new System.Windows.Forms.ToolStrip();
     this.toolStrip_txtTracuu = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel8 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtTenhang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtSoluong = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel5 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGiagoc = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtChietkhauphantram = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtGianhap = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel4 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtThuegiatrigiatang = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel6 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_Chietkhau = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel7 = new System.Windows.Forms.ToolStripLabel();
     this.toolStrip_txtNgayhethan = new System.Windows.Forms.ToolStripTextBox();
     this.toolStrip_btnThem = new System.Windows.Forms.ToolStripButton();
     this.statusStrip1.SuspendLayout();
     this.palNhap.SuspendLayout();
     this.palXem.SuspendLayout();
     this.grbDataGridview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvInsertOrder)).BeginInit();
     this.palThem.SuspendLayout();
     this.toolStrip_Insert.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.statusStrip1.Font = new System.Drawing.Font("Times New Roman", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
//.........这里部分代码省略.........
开发者ID:mrk29vn,项目名称:vna-accounting,代码行数:101,代码来源:frmXuLyNhapKho.designer.cs

示例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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PicQueryForm));
     this.queryBtn = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.timeEdit1 = new DevExpress.XtraEditors.TimeEdit();
     this.timeEdit2 = new DevExpress.XtraEditors.TimeEdit();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.imageList2 = new System.Windows.Forms.ImageList(this.components);
     this.bestPicListView = new System.Windows.Forms.ListView();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.pictureBoxFace = new System.Windows.Forms.PictureBox();
     this.labelCaptureLoc = new System.Windows.Forms.Label();
     this.labelCaptureTime = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.axVLCPlugin21 = new AxAXVLC.AxVLCPlugin2();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.pictureBoxWholeImg = new System.Windows.Forms.PictureBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButtonFirstPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonPrePage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonNextPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripButtonLastPage = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabelCurPage = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxPageSize = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonPlayVideo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.timeEdit2.Properties)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxFace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.axVLCPlugin21)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWholeImg)).BeginInit();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // queryBtn
     //
     this.queryBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.queryBtn.Location = new System.Drawing.Point(724, 26);
     this.queryBtn.Name = "queryBtn";
     this.queryBtn.Size = new System.Drawing.Size(86, 23);
     this.queryBtn.TabIndex = 0;
     this.queryBtn.Text = "查询";
     this.queryBtn.UseVisualStyleBackColor = true;
     this.queryBtn.Click += new System.EventHandler(this.queryBtn_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 12);
     this.label1.TabIndex = 1;
     this.label1.Text = "监控点";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(184, 31);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(23, 12);
     this.label2.TabIndex = 2;
//.........这里部分代码省略.........
开发者ID:dalinhuang,项目名称:appcollection,代码行数:101,代码来源:PicQueryForm.designer.cs


注:本文中的System.Windows.Forms.ToolStripLabel类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。