123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- namespace VzClientSDKDemo
- {
- partial class NetCfg_Form
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <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.txtIP = new System.Windows.Forms.TextBox();
- this.txtMask = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.txtGateway = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.btnSave = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(23, 29);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(41, 12);
- this.label1.TabIndex = 0;
- this.label1.Text = "IP地址";
- //
- // txtIP
- //
- this.txtIP.Location = new System.Drawing.Point(90, 26);
- this.txtIP.Name = "txtIP";
- this.txtIP.Size = new System.Drawing.Size(100, 21);
- this.txtIP.TabIndex = 3;
- this.txtIP.Text = "192.168.1.101";
- //
- // txtMask
- //
- this.txtMask.Location = new System.Drawing.Point(90, 53);
- this.txtMask.Name = "txtMask";
- this.txtMask.Size = new System.Drawing.Size(100, 21);
- this.txtMask.TabIndex = 5;
- this.txtMask.Text = "255.255.255.0";
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(23, 56);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 12);
- this.label2.TabIndex = 4;
- this.label2.Text = "子网掩码";
- //
- // txtGateway
- //
- this.txtGateway.Location = new System.Drawing.Point(90, 80);
- this.txtGateway.Name = "txtGateway";
- this.txtGateway.Size = new System.Drawing.Size(100, 21);
- this.txtGateway.TabIndex = 7;
- this.txtGateway.Text = "192.168.1.1";
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(23, 83);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(53, 12);
- this.label3.TabIndex = 6;
- this.label3.Text = "默认网关";
- //
- // btnSave
- //
- this.btnSave.Location = new System.Drawing.Point(123, 118);
- this.btnSave.Name = "btnSave";
- this.btnSave.Size = new System.Drawing.Size(66, 23);
- this.btnSave.TabIndex = 8;
- this.btnSave.Text = "确定";
- this.btnSave.UseVisualStyleBackColor = true;
- this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
- //
- // NetCfg_Form
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(257, 180);
- this.Controls.Add(this.btnSave);
- this.Controls.Add(this.txtGateway);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.txtMask);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.txtIP);
- this.Controls.Add(this.label1);
- this.Name = "NetCfg_Form";
- this.Text = "网络参数配置";
- this.Load += new System.EventHandler(this.NetCfg_Form_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox txtIP;
- private System.Windows.Forms.TextBox txtMask;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox txtGateway;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.Button btnSave;
- }
- }
|