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

C# Forms.ToolStripLabel类代码示例

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

本文整理汇总了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类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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 

鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
C# Forms.ToolStripMenuItem类代码示例发布时间:2022-05-24
下一篇:
C# Forms.ToolStripButton类代码示例发布时间: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