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

C# Forms.NumericUpDown类代码示例

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

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



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

示例1: InitializeComponent

        private void InitializeComponent()
        {
            this.ValueIntNumericUpDown = new System.Windows.Forms.NumericUpDown();
            this.ValueIntButtonSet = new System.Windows.Forms.Button();
            this.ValueIntLabel = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.ValueIntNumericUpDown)).BeginInit();
            this.SuspendLayout();
            // 
            // ValueIntNumericUpDown
            // 
            this.ValueIntNumericUpDown.Location = new System.Drawing.Point(3, 6);
            this.ValueIntNumericUpDown.Maximum = new decimal(new int[] {
            2147483647,
            0,
            0,
            0});
            this.ValueIntNumericUpDown.Minimum = new decimal(new int[] {
            -2147483648,
            0,
            0,
            -2147483648});
            this.ValueIntNumericUpDown.Name = "ValueIntNumericUpDown";
            this.ValueIntNumericUpDown.Size = new System.Drawing.Size(59, 20);
            this.ValueIntNumericUpDown.TabIndex = 0;
            this.ValueIntNumericUpDown.ThousandsSeparator = true;
            // 
            // ValueIntButtonSet
            // 
            this.ValueIntButtonSet.Location = new System.Drawing.Point(68, 6);
            this.ValueIntButtonSet.Name = "ValueIntButtonSet";
            this.ValueIntButtonSet.Size = new System.Drawing.Size(59, 20);
            this.ValueIntButtonSet.TabIndex = 1;
            this.ValueIntButtonSet.Text = "Set";
            this.ValueIntButtonSet.UseVisualStyleBackColor = true;
            this.ValueIntButtonSet.Click += new System.EventHandler(this.ValueIntButtonSet_Click);
            // 
            // ValueIntLabel
            // 
            this.ValueIntLabel.AutoSize = true;
            this.ValueIntLabel.Location = new System.Drawing.Point(133, 10);
            this.ValueIntLabel.Name = "ValueIntLabel";
            this.ValueIntLabel.Size = new System.Drawing.Size(33, 13);
            this.ValueIntLabel.TabIndex = 2;
            this.ValueIntLabel.Text = "Label";
            // 
            // ValuePanelInt
            // 
            this.AutoSize = true;
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.Controls.Add(this.ValueIntLabel);
            this.Controls.Add(this.ValueIntButtonSet);
            this.Controls.Add(this.ValueIntNumericUpDown);
            this.Name = "ValuePanelInt";
            this.Size = new System.Drawing.Size(169, 29);
            ((System.ComponentModel.ISupportInitialize)(this.ValueIntNumericUpDown)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:BryanJenks,项目名称:node-openzwave,代码行数:59,代码来源:ValuePanelInt.cs


示例2: DecimalEditor

 public DecimalEditor(Dictionary<string, object> Params)
     : base(Params)
 {
     control = new NekoKun.UI.LynnNumericUpDown();
     control.Minimum = decimal.MinValue;
     control.Maximum = decimal.MaxValue;
     control.ValueChanged += new EventHandler(control_ModifiedChanged);
 }
开发者ID:NekoProject,项目名称:NekoKun,代码行数:8,代码来源:DecimalEditor.cs


示例3: AddPanel

        public void AddPanel()
        {
            int yCord = 0;

            tmpNumUpDown = new System.Windows.Forms.NumericUpDown();
            tmpComboBox = new System.Windows.Forms.ComboBox();
            tmpPanel = new System.Windows.Forms.Panel();

            // numericUpDown2
            //
            tmpNumUpDown.Location = new System.Drawing.Point(3, 3);
            tmpNumUpDown.Name = "numericUpDown";
            tmpNumUpDown.Size = new System.Drawing.Size(108, 20);
            tmpNumUpDown.TabIndex = 1;
            //
            // comboBox1
            //
            tmpComboBox.FormattingEnabled = true;
            tmpComboBox.Items.AddRange(new object[] {
                "AA(4.0)",
                "BA(3.5)",
                "BB(3.0)",
                "CB(2.5)",
                "CC(2.0)",
                "DC(1.5)",
                "DD(1.0)",
                "FD(0.5)",
                "FF,F0(0.0)"
            });
            tmpComboBox.Location = new System.Drawing.Point(132, 2);
            tmpComboBox.Name = "comboBox";
            tmpComboBox.SelectedIndex = 0;
            tmpComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            tmpComboBox.Size = new System.Drawing.Size(121, 21);
            tmpComboBox.TabIndex = 2;
            //
            // panel1
            //

            tmpPanel.Controls.Add(tmpComboBox);
            tmpPanel.Controls.Add(tmpNumUpDown);

            tmpPanel.Name = "panel";
            tmpPanel.Size = new System.Drawing.Size(256, 28);

            if (PanelList.Count > 0) {

                yCord = PanelList[PanelList.Count - 1].Location.Y;
                yCord += 30;
                tmpPanel.Location = new System.Drawing.Point(0, yCord);

            }
            else tmpPanel.Location = new System.Drawing.Point(0, 0);

            PanelList.Add(tmpPanel);
            GradeList.Add(tmpComboBox);
            CredictList.Add(tmpNumUpDown);
        }
开发者ID:megoman123,项目名称:FinishedBasicProjects,代码行数:58,代码来源:AGNOCalculator.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.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label1 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.SuspendLayout();
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(31, 74);
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(120, 20);
     this.numericUpDown1.TabIndex = 0;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(28, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(35, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "label1";
     //
     // button1
     //
     this.button1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button1.Location = new System.Drawing.Point(193, 74);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 2;
     this.button1.Text = "Valider";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // Combien
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(298, 122);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.numericUpDown1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "Combien";
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Form2";
     this.TopMost = true;
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
开发者ID:jtraulle,项目名称:WineTeK,代码行数:56,代码来源:Combien.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.nudDelay = new System.Windows.Forms.NumericUpDown();
     this.cbDelay = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.nudDelay)).BeginInit();
     this.SuspendLayout();
     //
     // nudDelay
     //
     this.nudDelay.Location = new System.Drawing.Point(2, 3);
     this.nudDelay.Maximum = new decimal(new int[] {
     1000000000,
     0,
     0,
     0});
     this.nudDelay.Name = "nudDelay";
     this.nudDelay.Size = new System.Drawing.Size(68, 20);
     this.nudDelay.TabIndex = 0;
     this.nudDelay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.nudDelay.ValueChanged += new System.EventHandler(this.nudDelay_ValueChanged);
     //
     // cbDelay
     //
     this.cbDelay.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
     this.cbDelay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbDelay.FormattingEnabled = true;
     this.cbDelay.ItemHeight = 13;
     this.cbDelay.Location = new System.Drawing.Point(74, 3);
     this.cbDelay.Name = "cbDelay";
     this.cbDelay.Size = new System.Drawing.Size(159, 21);
     this.cbDelay.TabIndex = 1;
     this.cbDelay.SelectedIndexChanged += new System.EventHandler(this.cbDelay_SelectedIndexChanged);
     //
     // NumericUpDownTimer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.cbDelay);
     this.Controls.Add(this.nudDelay);
     this.Name = "NumericUpDownTimer";
     this.Size = new System.Drawing.Size(233, 27);
     ((System.ComponentModel.ISupportInitialize)(this.nudDelay)).EndInit();
     this.ResumeLayout(false);
 }
开发者ID:modulexcite,项目名称:ZScreen_Google_Code,代码行数:48,代码来源:NumericUpDownTimer.designer.cs


示例6: mapConfigurationItemIntoControl

 public override System.Windows.Forms.Control mapConfigurationItemIntoControl(IConfigurationItem item)
 {
     if (item is ConfigurationItemDouble)
     {
         System.Windows.Forms.NumericUpDown typedControl = new System.Windows.Forms.NumericUpDown();
         typedControl.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
         // First assign the extremes, and then the value
         typedControl.Maximum = (decimal)((ConfigurationItemDouble)item).MaxValue;
         typedControl.Minimum = (decimal)((ConfigurationItemDouble)item).MinValue;
         typedControl.Value = (decimal)((ConfigurationItemDouble)item).Value;
         typedControl.DecimalPlaces = 6;
         typedControl.Increment = (decimal)0.0001;
         return typedControl;
     }
     else
     {
         return null;
     }
 }
开发者ID:fernandolucasrodriguez,项目名称:qit,代码行数:19,代码来源:UserInterfaceMapperDouble.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.groupBox = new System.Windows.Forms.GroupBox();
     this.numericUpDown = new System.Windows.Forms.NumericUpDown();
     this.groupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox
     //
     this.groupBox.Controls.Add(this.numericUpDown);
     this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox.Location = new System.Drawing.Point(0, 0);
     this.groupBox.Name = "groupBox";
     this.groupBox.Size = new System.Drawing.Size(150, 150);
     this.groupBox.TabIndex = 0;
     this.groupBox.TabStop = false;
     this.groupBox.Text = "Track";
     //
     // numericUpDown
     //
     this.numericUpDown.Dock = System.Windows.Forms.DockStyle.Fill;
     this.numericUpDown.Location = new System.Drawing.Point(3, 16);
     this.numericUpDown.Name = "numericUpDown";
     this.numericUpDown.Size = new System.Drawing.Size(144, 20);
     this.numericUpDown.TabIndex = 0;
     this.numericUpDown.ValueChanged += new System.EventHandler(this.numericUpDown_ValueChanged);
     //
     // TrackBarEx
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupBox);
     this.Name = "TrackBarEx";
     this.groupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit();
     this.ResumeLayout(false);
 }
开发者ID:zhuangyy,项目名称:Motion,代码行数:42,代码来源:TrackBarEx.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.updownColumns = new System.Windows.Forms.NumericUpDown();
            this.updownRows = new System.Windows.Forms.NumericUpDown();
            this.Label2 = new System.Windows.Forms.Label();
            this.Label1 = new System.Windows.Forms.Label();
            this.cmdCancel = new System.Windows.Forms.Button();
            this.cmdOK = new System.Windows.Forms.Button();
            ((System.ComponentModel.ISupportInitialize)(this.updownColumns)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.updownRows)).BeginInit();
            this.SuspendLayout();
            // 
            // updownColumns
            // 
            this.updownColumns.Location = new System.Drawing.Point(64, 40);
            this.updownColumns.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.updownColumns.Name = "updownColumns";
            this.updownColumns.Size = new System.Drawing.Size(64, 20);
            this.updownColumns.TabIndex = 3;
            this.updownColumns.Value = new decimal(new int[] {
            5,
            0,
            0,
            0});
            // 
            // updownRows
            // 
            this.updownRows.Location = new System.Drawing.Point(64, 16);
            this.updownRows.Maximum = new decimal(new int[] {
            1000,
            0,
            0,
            0});
            this.updownRows.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
            this.updownRows.Name = "updownRows";
            this.updownRows.Size = new System.Drawing.Size(64, 20);
            this.updownRows.TabIndex = 2;
            this.updownRows.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
            // 
            // Label2
            // 
            this.Label2.Location = new System.Drawing.Point(8, 40);
            this.Label2.Name = "Label2";
            this.Label2.Size = new System.Drawing.Size(56, 16);
            this.Label2.TabIndex = 0;
            this.Label2.Text = "Columns";
            // 
            // Label1
            // 
            this.Label1.Location = new System.Drawing.Point(8, 16);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(56, 16);
            this.Label1.TabIndex = 0;
            this.Label1.Text = "Rows";
            // 
            // cmdCancel
            // 
            this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cmdCancel.Location = new System.Drawing.Point(184, 40);
            this.cmdCancel.Name = "cmdCancel";
            this.cmdCancel.Size = new System.Drawing.Size(80, 24);
            this.cmdCancel.TabIndex = 1;
            this.cmdCancel.Text = "&Cancel";
            // 
            // cmdOK
            // 
            this.cmdOK.Location = new System.Drawing.Point(184, 8);
            this.cmdOK.Name = "cmdOK";
            this.cmdOK.Size = new System.Drawing.Size(80, 24);
            this.cmdOK.TabIndex = 0;
            this.cmdOK.Text = "&OK";
            this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
            // 
            // FrmInsertTable
            // 
            this.AcceptButton = this.cmdOK;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.CancelButton = this.cmdCancel;
            this.ClientSize = new System.Drawing.Size(272, 80);
            this.Controls.Add(this.updownColumns);
            this.Controls.Add(this.updownRows);
            this.Controls.Add(this.Label2);
            this.Controls.Add(this.Label1);
            this.Controls.Add(this.cmdCancel);
//.........这里部分代码省略.........
开发者ID:gipasoft,项目名称:Sfera,代码行数:101,代码来源:frmInsertTable.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BarcodeSimulatorControl));
     this.delayNumeric = new System.Windows.Forms.NumericUpDown();
     this.label1 = new System.Windows.Forms.Label();
     this.newStringTextBox = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.hotkeyTextBox = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.endsWithComboBox = new System.Windows.Forms.ComboBox();
     this.itemsListView = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.itemsGroupBox = new System.Windows.Forms.GroupBox();
     this.newCodeTypeLabel = new System.Windows.Forms.Label();
     this.configurationGroupBox = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.delayNumeric)).BeginInit();
     this.itemsGroupBox.SuspendLayout();
     this.configurationGroupBox.SuspendLayout();
     this.SuspendLayout();
     //
     // delayNumeric
     //
     this.delayNumeric.Increment = new decimal(new int[] {
     10,
     0,
     0,
     0});
     this.delayNumeric.Location = new System.Drawing.Point(79, 27);
     this.delayNumeric.Maximum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.delayNumeric.Minimum = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.delayNumeric.Name = "delayNumeric";
     this.delayNumeric.Size = new System.Drawing.Size(120, 20);
     this.delayNumeric.TabIndex = 1;
     this.delayNumeric.Value = new decimal(new int[] {
     50,
     0,
     0,
     0});
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 29);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(55, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Key Delay";
     //
     // newStringTextBox
     //
     this.newStringTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.newStringTextBox.Location = new System.Drawing.Point(9, 43);
     this.newStringTextBox.MaxLength = 50;
     this.newStringTextBox.Name = "newStringTextBox";
     this.newStringTextBox.Size = new System.Drawing.Size(162, 20);
     this.newStringTextBox.TabIndex = 3;
     this.newStringTextBox.TextChanged += new System.EventHandler(this.newStringTextBox_TextChanged);
     this.newStringTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.newStringTextBox_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(6, 56);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(41, 13);
     this.label2.TabIndex = 4;
     this.label2.Text = "Hotkey";
     //
     // hotkeyTextBox
     //
     this.hotkeyTextBox.Location = new System.Drawing.Point(79, 53);
     this.hotkeyTextBox.Name = "hotkeyTextBox";
     this.hotkeyTextBox.ReadOnly = true;
     this.hotkeyTextBox.Size = new System.Drawing.Size(120, 20);
     this.hotkeyTextBox.TabIndex = 5;
     this.hotkeyTextBox.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(6, 27);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(54, 13);
     this.label3.TabIndex = 11;
     this.label3.Text = "Add Code";
//.........这里部分代码省略.........
开发者ID:jgera,项目名称:barcode-simulator,代码行数:101,代码来源:BarcodeSimulatorControl.designer.cs


示例10: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panel1 = new System.Windows.Forms.Panel();
     this.site_numericUpDown = new System.Windows.Forms.NumericUpDown();
     this.OrderBy_comboBox = new System.Windows.Forms.ComboBox();
     this.rep4_comboBox = new System.Windows.Forms.ComboBox();
     this.CustContact_comboBox = new System.Windows.Forms.ComboBox();
     this.rep2_comboBox = new System.Windows.Forms.ComboBox();
     this.AAONContact_comboBox = new System.Windows.Forms.ComboBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.rep4_label = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.Cust_No_textBox = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.repContact_comboBox = new System.Windows.Forms.ComboBox();
     this.market_textBox = new System.Windows.Forms.TextBox();
     this.rep3_comboBox = new System.Windows.Forms.ComboBox();
     this.rep1_comboBox = new System.Windows.Forms.ComboBox();
     this.shopOrderNo_textBox = new System.Windows.Forms.TextBox();
     this.CustNo_textBox = new System.Windows.Forms.TextBox();
     this.JobName_textBox = new System.Windows.Forms.TextBox();
     this.Jobno_textBox = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.state_comboBox = new System.Windows.Forms.ComboBox();
     this.zipCode_textBox = new System.Windows.Forms.TextBox();
     this.country_textBox = new System.Windows.Forms.TextBox();
     this.city_textBox = new System.Windows.Forms.TextBox();
     this.Address2_textBox = new System.Windows.Forms.TextBox();
     this.Address1_textBox = new System.Windows.Forms.TextBox();
     this.Name_comboBox = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.site_numericUpDown)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.site_numericUpDown);
     this.panel1.Controls.Add(this.OrderBy_comboBox);
     this.panel1.Controls.Add(this.rep4_comboBox);
     this.panel1.Controls.Add(this.CustContact_comboBox);
     this.panel1.Controls.Add(this.rep2_comboBox);
     this.panel1.Controls.Add(this.AAONContact_comboBox);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.rep4_label);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label12);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.Cust_No_textBox);
     this.panel1.Controls.Add(this.label10);
     this.panel1.Controls.Add(this.repContact_comboBox);
     this.panel1.Controls.Add(this.market_textBox);
     this.panel1.Controls.Add(this.rep3_comboBox);
     this.panel1.Controls.Add(this.rep1_comboBox);
     this.panel1.Controls.Add(this.shopOrderNo_textBox);
     this.panel1.Controls.Add(this.CustNo_textBox);
     this.panel1.Controls.Add(this.JobName_textBox);
     this.panel1.Controls.Add(this.Jobno_textBox);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Location = new System.Drawing.Point(12, 27);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(499, 258);
     this.panel1.TabIndex = 0;
     //
     // site_numericUpDown
     //
     this.site_numericUpDown.Location = new System.Drawing.Point(369, 186);
//.........这里部分代码省略.........
开发者ID:Spritutu,项目名称:ntxx,代码行数:101,代码来源:billing.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.label1 = new System.Windows.Forms.Label();
     this.textBoxValue = new System.Windows.Forms.TextBox();
     this.accept = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label3 = new System.Windows.Forms.Label();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 24);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(55, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Значение";
     //
     // textBoxValue
     //
     this.textBoxValue.Location = new System.Drawing.Point(106, 21);
     this.textBoxValue.Name = "textBoxValue";
     this.textBoxValue.Size = new System.Drawing.Size(142, 20);
     this.textBoxValue.TabIndex = 1;
     //
     // accept
     //
     this.accept.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.accept.Location = new System.Drawing.Point(180, 191);
     this.accept.Name = "accept";
     this.accept.Size = new System.Drawing.Size(75, 23);
     this.accept.TabIndex = 3;
     this.accept.Text = "Принять";
     this.accept.UseVisualStyleBackColor = true;
     this.accept.Click += new System.EventHandler(this.accept_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 58);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(57, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Описание";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(15, 74);
     this.textBox1.Multiline = true;
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(233, 55);
     this.textBox1.TabIndex = 2;
     //
     // numericUpDown1
     //
     this.numericUpDown1.Location = new System.Drawing.Point(144, 135);
     this.numericUpDown1.Maximum = new decimal(new int[] {
     1023,
     0,
     0,
     0});
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(52, 20);
     this.numericUpDown1.TabIndex = 9;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(23, 137);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(115, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Использовать номер";
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Checked = true;
     this.checkBox1.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBox1.Location = new System.Drawing.Point(26, 161);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(169, 17);
     this.checkBox1.TabIndex = 7;
     this.checkBox1.Text = "Присвоить свобоный номер";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // AddConstantForm
     //
     this.AcceptButton = this.accept;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(267, 226);
//.........这里部分代码省略.........
开发者ID:slawer,项目名称:devicemanager,代码行数:101,代码来源:AddConstantForm.designer.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(ServerSettingsForm));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.EnablePunkBuster = new System.Windows.Forms.CheckBox();
     this.AutoBalanceBox = new System.Windows.Forms.CheckBox();
     this.ServerIpBox = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox13 = new System.Windows.Forms.GroupBox();
     this.TeamRatioBox = new System.Windows.Forms.TextBox();
     this.TeamRatioBar = new System.Windows.Forms.TrackBar();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.ScoreLimitBox = new System.Windows.Forms.TextBox();
     this.ScoreLimitBar = new System.Windows.Forms.TrackBar();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.TicketRatioBox = new System.Windows.Forms.TextBox();
     this.TicketRatioBar = new System.Windows.Forms.TrackBar();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.MaxPlayersBar = new System.Windows.Forms.TrackBar();
     this.MaxPlayersBox = new System.Windows.Forms.TextBox();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.PlayersToStartSlider = new System.Windows.Forms.TrackBar();
     this.PlayersToStartValueBox = new System.Windows.Forms.TextBox();
     this.RoundsPerMapBox = new System.Windows.Forms.NumericUpDown();
     this.GamespyPortBox = new System.Windows.Forms.NumericUpDown();
     this.ServerPortBox = new System.Windows.Forms.NumericUpDown();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.ServerWelcomeBox = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.ServerPasswordBox = new System.Windows.Forms.TextBox();
     this.ServerNameBox = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.EnablePublicServerBox = new System.Windows.Forms.CheckBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox21 = new System.Windows.Forms.GroupBox();
     this.TimeB4RestartMapBar = new System.Windows.Forms.TrackBar();
     this.TimeB4RestartMapBox = new System.Windows.Forms.TextBox();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.NotEnoughPlayersBar = new System.Windows.Forms.TrackBar();
     this.NotEnoughPlayersBox = new System.Windows.Forms.TextBox();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.EORBar = new System.Windows.Forms.TrackBar();
     this.EORBox = new System.Windows.Forms.TextBox();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.EndDelayBar = new System.Windows.Forms.TrackBar();
     this.EndDelayBox = new System.Windows.Forms.TextBox();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.StartDelayBar = new System.Windows.Forms.TrackBar();
     this.StartDelayBox = new System.Windows.Forms.TextBox();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.ManDownBar = new System.Windows.Forms.TrackBar();
     this.ManDownBox = new System.Windows.Forms.TextBox();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.SpawnTimeBar = new System.Windows.Forms.TrackBar();
     this.SpawnTimeBox = new System.Windows.Forms.TextBox();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.TimeLimitBar = new System.Windows.Forms.TrackBar();
     this.TimeLimitBox = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.VoipPasswordBox = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.RemoteVoipIpBox = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.EnableRemoteVoip = new System.Windows.Forms.CheckBox();
     this.VoipServerPort = new System.Windows.Forms.NumericUpDown();
     this.label10 = new System.Windows.Forms.Label();
     this.VoipBF2ServerPort = new System.Windows.Forms.NumericUpDown();
     this.VoipBF2ClientPort = new System.Windows.Forms.NumericUpDown();
     this.VoipQualityBox = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.VoipQualityBar = new System.Windows.Forms.TrackBar();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.EnableVoip = new System.Windows.Forms.CheckBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.label8 = new System.Windows.Forms.Label();
     this.TksBeforeKickBox = new System.Windows.Forms.NumericUpDown();
     this.PunishDefaultBox = new System.Windows.Forms.CheckBox();
     this.FriendlyFireBox = new System.Windows.Forms.CheckBox();
     this.PunishTeamKillsBox = new System.Windows.Forms.CheckBox();
     this.groupBox25 = new System.Windows.Forms.GroupBox();
     this.VehicleSplashFFBox = new System.Windows.Forms.TextBox();
     this.VehicleSplashFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox24 = new System.Windows.Forms.GroupBox();
     this.SoldierSplashFFBox = new System.Windows.Forms.TextBox();
     this.SoldierSplashFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox23 = new System.Windows.Forms.GroupBox();
     this.VehicleFFBox = new System.Windows.Forms.TextBox();
     this.VehicleFFBar = new System.Windows.Forms.TrackBar();
     this.groupBox22 = new System.Windows.Forms.GroupBox();
     this.SoldierFFBox = new System.Windows.Forms.TextBox();
//.........这里部分代码省略.........
开发者ID:roguesupport,项目名称:ControlCenter,代码行数:101,代码来源:ServerSettingsForm.designer.cs


示例13: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.COMBOBOX_RegisterAccessType = new System.Windows.Forms.ComboBox();
     this.BUTTON_RegisterAccessReadRegister = new System.Windows.Forms.Button();
     this.BUTTON_RegisterAccessWriteRegister = new System.Windows.Forms.Button();
     this.BUTTON_RegisterAccessBatch = new System.Windows.Forms.Button();
     this.BUTTON_RegisterAccessBatchHelp = new System.Windows.Forms.Button();
     this.CHECKBOX_RegisterAccesssBatchStopOnError = new System.Windows.Forms.CheckBox();
     this.TEXTBOX_RegisterAccessReadAddress = new System.Windows.Forms.TextBox();
     this.TEXTBOX_RegisterAccessWriteRegisterAddress = new System.Windows.Forms.TextBox();
     this.TEXTBOX_RegisterAccessWriteRegisterData = new System.Windows.Forms.TextBox();
     this.NUMERICUPDOWN_RegisterAccessReadRegisterLength = new System.Windows.Forms.NumericUpDown();
     this.NUMERICUPDOWN_RegisterAccessProfile = new System.Windows.Forms.NumericUpDown();
     this.TEXTBOX_RegisterAccessWriteRegisterBank = new System.Windows.Forms.TextBox();
     this.BUTTON_ClearStatus = new System.Windows.Forms.Button();
     this.BUTTON_SaveStatus = new System.Windows.Forms.Button();
     this.BUTTON_Close = new System.Windows.Forms.Button();
     this.CHECKBOX_AppendHistory = new System.Windows.Forms.CheckBox();
     this.LABEL_RegisterAccessReadRegisterAddress = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessWriteRegisterAddress = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessReadRegisterCount = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessWriteRegisterData = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessWriteRegisterBank = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessProfile = new System.Windows.Forms.Label();
     this.LABEL_RegisterAccessRegisterType = new System.Windows.Forms.Label();
     this.TEXTBOX_MainStatus = new System.Windows.Forms.RichTextBox();
     this.BUTTON_DumpMac = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.NUMERICUPDOWN_RegisterAccessReadRegisterLength)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NUMERICUPDOWN_RegisterAccessProfile)).BeginInit();
     this.SuspendLayout();
     //
     // COMBOBOX_RegisterAccessType
     //
     this.COMBOBOX_RegisterAccessType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.COMBOBOX_RegisterAccessType.FormattingEnabled = true;
     this.COMBOBOX_RegisterAccessType.Location = new System.Drawing.Point(93, 12);
     this.COMBOBOX_RegisterAccessType.Name = "COMBOBOX_RegisterAccessType";
     this.COMBOBOX_RegisterAccessType.Size = new System.Drawing.Size(96, 21);
     this.COMBOBOX_RegisterAccessType.TabIndex = 0;
     this.COMBOBOX_RegisterAccessType.SelectedIndexChanged += new System.EventHandler(this.COMBOBOX_RegisterAccess_SelectedIndexChanged);
     //
     // BUTTON_RegisterAccessReadRegister
     //
     this.BUTTON_RegisterAccessReadRegister.Location = new System.Drawing.Point(12, 62);
     this.BUTTON_RegisterAccessReadRegister.Name = "BUTTON_RegisterAccessReadRegister";
     this.BUTTON_RegisterAccessReadRegister.Size = new System.Drawing.Size(75, 23);
     this.BUTTON_RegisterAccessReadRegister.TabIndex = 1;
     this.BUTTON_RegisterAccessReadRegister.Text = "Read";
     this.BUTTON_RegisterAccessReadRegister.UseVisualStyleBackColor = true;
     this.BUTTON_RegisterAccessReadRegister.Click += new System.EventHandler(this.BUTTON_ReadRegister_Click);
     //
     // BUTTON_RegisterAccessWriteRegister
     //
     this.BUTTON_RegisterAccessWriteRegister.Location = new System.Drawing.Point(12, 91);
     this.BUTTON_RegisterAccessWriteRegister.Name = "BUTTON_RegisterAccessWriteRegister";
     this.BUTTON_RegisterAccessWriteRegister.Size = new System.Drawing.Size(75, 23);
     this.BUTTON_RegisterAccessWriteRegister.TabIndex = 2;
     this.BUTTON_RegisterAccessWriteRegister.Text = "Write";
     this.BUTTON_RegisterAccessWriteRegister.UseVisualStyleBackColor = true;
     this.BUTTON_RegisterAccessWriteRegister.Click += new System.EventHandler(this.BUTTON_WriteRegister_Click);
     //
     // BUTTON_RegisterAccessBatch
     //
     this.BUTTON_RegisterAccessBatch.Location = new System.Drawing.Point(12, 120);
     this.BUTTON_RegisterAccessBatch.Name = "BUTTON_RegisterAccessBatch";
     this.BUTTON_RegisterAccessBatch.Size = new System.Drawing.Size(75, 23);
     this.BUTTON_RegisterAccessBatch.TabIndex = 3;
     this.BUTTON_RegisterAccessBatch.Text = "Batch";
     this.BUTTON_RegisterAccessBatch.UseVisualStyleBackColor = true;
     this.BUTTON_RegisterAccessBatch.Click += new System.EventHandler(this.BUTTON_RegisterAccessBatch_Click);
     //
     // BUTTON_RegisterAccessBatchHelp
     //
     this.BUTTON_RegisterAccessBatchHelp.Location = new System.Drawing.Point(87, 120);
     this.BUTTON_RegisterAccessBatchHelp.Name = "BUTTON_RegisterAccessBatchHelp";
     this.BUTTON_RegisterAccessBatchHelp.Size = new System.Drawing.Size(19, 23);
     this.BUTTON_RegisterAccessBatchHelp.TabIndex = 4;
     this.BUTTON_RegisterAccessBatchHelp.Text = "?";
     this.BUTTON_RegisterAccessBatchHelp.UseVisualStyleBackColor = true;
     this.BUTTON_RegisterAccessBatchHelp.Click += new System.EventHandler(this.BUTTON_RegisterAccessBatchHelp_Click);
     //
     // CHECKBOX_RegisterAccesssBatchStopOnError
     //
     this.CHECKBOX_RegisterAccesssBatchStopOnError.AutoSize = true;
     this.CHECKBOX_RegisterAccesssBatchStopOnError.Location = new System.Drawing.Point(112, 124);
     this.CHECKBOX_RegisterAccesssBatchStopOnError.Name = "CHECKBOX_RegisterAccesssBatchStopOnError";
     this.CHECKBOX_RegisterAccesssBatchStopOnError.Size = new System.Drawing.Size(121, 17);
     this.CHECKBOX_RegisterAccesssBatchStopOnError.TabIndex = 5;
     this.CHECKBOX_RegisterAccesssBatchStopOnError.Text = "Batch Stop On Error";
     this.CHECKBOX_RegisterAccesssBatchStopOnError.UseVisualStyleBackColor = true;
     //
     // TEXTBOX_RegisterAccessReadAddress
     //
     this.TEXTBOX_RegisterAccessReadAddress.Location = new System.Drawing.Point(150, 64);
     this.TEXTBOX_RegisterAccessReadAddress.MaxLength = 4;
     this.TEXTBOX_RegisterAccessReadAddress.Name = "TEXTBOX_RegisterAccessReadAddress";
//.........这里部分代码省略.........
开发者ID:mti-rfid,项目名称:RFID_Explorer,代码行数:101,代码来源:RegisterAccess.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()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Server));
     this.btnStartServer = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.btnStopServer = new System.Windows.Forms.Button();
     this.lstClients = new System.Windows.Forms.ListView();
     this.label3 = new System.Windows.Forms.Label();
     this.numLobbyPort = new System.Windows.Forms.NumericUpDown();
     this.numBasePort = new System.Windows.Forms.NumericUpDown();
     this.statusStrip1 = new System.Windows.Forms.StatusStrip();
     this.toolStripStatus = new System.Windows.Forms.ToolStripStatusLabel();
     this.label1 = new System.Windows.Forms.Label();
     this.TrayIcon = new System.Windows.Forms.NotifyIcon(this.components);
     this.lvActiveGames = new System.Windows.Forms.ListView();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbStep = new System.Windows.Forms.TrackBar();
     this.spMain = new System.Windows.Forms.SplitContainer();
     ((System.ComponentModel.ISupportInitialize)(this.numLobbyPort)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numBasePort)).BeginInit();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStep)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spMain)).BeginInit();
     this.spMain.Panel1.SuspendLayout();
     this.spMain.SuspendLayout();
     this.SuspendLayout();
     //
     // btnStartServer
     //
     this.btnStartServer.Location = new System.Drawing.Point(12, 12);
     this.btnStartServer.Name = "btnStartServer";
     this.btnStartServer.Size = new System.Drawing.Size(59, 23);
     this.btnStartServer.TabIndex = 2;
     this.btnStartServer.Text = "Start";
     this.btnStartServer.UseVisualStyleBackColor = true;
     this.btnStartServer.Click += new System.EventHandler(this.btnStart 

鲜花

握手

雷人

路过

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

请发表评论

全部评论

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