NetCfg_Form.designer.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. namespace VzClientSDKDemo
  2. {
  3. partial class NetCfg_Form
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.txtIP = new System.Windows.Forms.TextBox();
  30. this.txtMask = new System.Windows.Forms.TextBox();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.txtGateway = new System.Windows.Forms.TextBox();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.btnSave = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Location = new System.Drawing.Point(23, 29);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(41, 12);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "IP地址";
  45. //
  46. // txtIP
  47. //
  48. this.txtIP.Location = new System.Drawing.Point(90, 26);
  49. this.txtIP.Name = "txtIP";
  50. this.txtIP.Size = new System.Drawing.Size(100, 21);
  51. this.txtIP.TabIndex = 3;
  52. this.txtIP.Text = "192.168.1.101";
  53. //
  54. // txtMask
  55. //
  56. this.txtMask.Location = new System.Drawing.Point(90, 53);
  57. this.txtMask.Name = "txtMask";
  58. this.txtMask.Size = new System.Drawing.Size(100, 21);
  59. this.txtMask.TabIndex = 5;
  60. this.txtMask.Text = "255.255.255.0";
  61. //
  62. // label2
  63. //
  64. this.label2.AutoSize = true;
  65. this.label2.Location = new System.Drawing.Point(23, 56);
  66. this.label2.Name = "label2";
  67. this.label2.Size = new System.Drawing.Size(53, 12);
  68. this.label2.TabIndex = 4;
  69. this.label2.Text = "子网掩码";
  70. //
  71. // txtGateway
  72. //
  73. this.txtGateway.Location = new System.Drawing.Point(90, 80);
  74. this.txtGateway.Name = "txtGateway";
  75. this.txtGateway.Size = new System.Drawing.Size(100, 21);
  76. this.txtGateway.TabIndex = 7;
  77. this.txtGateway.Text = "192.168.1.1";
  78. //
  79. // label3
  80. //
  81. this.label3.AutoSize = true;
  82. this.label3.Location = new System.Drawing.Point(23, 83);
  83. this.label3.Name = "label3";
  84. this.label3.Size = new System.Drawing.Size(53, 12);
  85. this.label3.TabIndex = 6;
  86. this.label3.Text = "默认网关";
  87. //
  88. // btnSave
  89. //
  90. this.btnSave.Location = new System.Drawing.Point(123, 118);
  91. this.btnSave.Name = "btnSave";
  92. this.btnSave.Size = new System.Drawing.Size(66, 23);
  93. this.btnSave.TabIndex = 8;
  94. this.btnSave.Text = "确定";
  95. this.btnSave.UseVisualStyleBackColor = true;
  96. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  97. //
  98. // NetCfg_Form
  99. //
  100. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  101. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  102. this.ClientSize = new System.Drawing.Size(257, 180);
  103. this.Controls.Add(this.btnSave);
  104. this.Controls.Add(this.txtGateway);
  105. this.Controls.Add(this.label3);
  106. this.Controls.Add(this.txtMask);
  107. this.Controls.Add(this.label2);
  108. this.Controls.Add(this.txtIP);
  109. this.Controls.Add(this.label1);
  110. this.Name = "NetCfg_Form";
  111. this.Text = "网络参数配置";
  112. this.Load += new System.EventHandler(this.NetCfg_Form_Load);
  113. this.ResumeLayout(false);
  114. this.PerformLayout();
  115. }
  116. #endregion
  117. private System.Windows.Forms.Label label1;
  118. private System.Windows.Forms.TextBox txtIP;
  119. private System.Windows.Forms.TextBox txtMask;
  120. private System.Windows.Forms.Label label2;
  121. private System.Windows.Forms.TextBox txtGateway;
  122. private System.Windows.Forms.Label label3;
  123. private System.Windows.Forms.Button btnSave;
  124. }
  125. }