Form1.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace Test.NetworkControl
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.BtnEnable = new System.Windows.Forms.Button();
  29. this.LbxNetworkList = new System.Windows.Forms.ListBox();
  30. this.BtnDisable = new System.Windows.Forms.Button();
  31. this.LbResult = new System.Windows.Forms.Label();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.BtnTest = new System.Windows.Forms.Button();
  34. this.BtnLoad = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // BtnEnable
  38. //
  39. this.BtnEnable.Location = new System.Drawing.Point(312, 12);
  40. this.BtnEnable.Name = "BtnEnable";
  41. this.BtnEnable.Size = new System.Drawing.Size(75, 23);
  42. this.BtnEnable.TabIndex = 0;
  43. this.BtnEnable.Text = "启用";
  44. this.BtnEnable.UseVisualStyleBackColor = true;
  45. this.BtnEnable.Click += new System.EventHandler(this.BtnEnable_Click);
  46. //
  47. // LbxNetworkList
  48. //
  49. this.LbxNetworkList.FormattingEnabled = true;
  50. this.LbxNetworkList.ItemHeight = 12;
  51. this.LbxNetworkList.Location = new System.Drawing.Point(12, 12);
  52. this.LbxNetworkList.Name = "LbxNetworkList";
  53. this.LbxNetworkList.Size = new System.Drawing.Size(274, 232);
  54. this.LbxNetworkList.TabIndex = 1;
  55. //
  56. // BtnDisable
  57. //
  58. this.BtnDisable.Location = new System.Drawing.Point(312, 41);
  59. this.BtnDisable.Name = "BtnDisable";
  60. this.BtnDisable.Size = new System.Drawing.Size(75, 23);
  61. this.BtnDisable.TabIndex = 2;
  62. this.BtnDisable.Text = "禁用";
  63. this.BtnDisable.UseVisualStyleBackColor = true;
  64. this.BtnDisable.Click += new System.EventHandler(this.BtnDisable_Click);
  65. //
  66. // LbResult
  67. //
  68. this.LbResult.AutoSize = true;
  69. this.LbResult.Location = new System.Drawing.Point(73, 259);
  70. this.LbResult.Name = "LbResult";
  71. this.LbResult.Size = new System.Drawing.Size(41, 12);
  72. this.LbResult.TabIndex = 4;
  73. this.LbResult.Text = "------";
  74. //
  75. // label1
  76. //
  77. this.label1.AutoSize = true;
  78. this.label1.Location = new System.Drawing.Point(15, 259);
  79. this.label1.Name = "label1";
  80. this.label1.Size = new System.Drawing.Size(41, 12);
  81. this.label1.TabIndex = 5;
  82. this.label1.Text = "输出:";
  83. //
  84. // BtnTest
  85. //
  86. this.BtnTest.Location = new System.Drawing.Point(312, 221);
  87. this.BtnTest.Name = "BtnTest";
  88. this.BtnTest.Size = new System.Drawing.Size(75, 23);
  89. this.BtnTest.TabIndex = 6;
  90. this.BtnTest.Text = "测试";
  91. this.BtnTest.UseVisualStyleBackColor = true;
  92. this.BtnTest.Click += new System.EventHandler(this.BtnTest_Click);
  93. //
  94. // BtnLoad
  95. //
  96. this.BtnLoad.Location = new System.Drawing.Point(312, 92);
  97. this.BtnLoad.Name = "BtnLoad";
  98. this.BtnLoad.Size = new System.Drawing.Size(75, 23);
  99. this.BtnLoad.TabIndex = 7;
  100. this.BtnLoad.Text = "刷新";
  101. this.BtnLoad.UseVisualStyleBackColor = true;
  102. this.BtnLoad.Click += new System.EventHandler(this.BtnLoad_Click);
  103. //
  104. // Form1
  105. //
  106. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  107. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  108. this.ClientSize = new System.Drawing.Size(406, 302);
  109. this.Controls.Add(this.BtnLoad);
  110. this.Controls.Add(this.BtnTest);
  111. this.Controls.Add(this.label1);
  112. this.Controls.Add(this.LbResult);
  113. this.Controls.Add(this.BtnDisable);
  114. this.Controls.Add(this.LbxNetworkList);
  115. this.Controls.Add(this.BtnEnable);
  116. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  117. this.MaximizeBox = false;
  118. this.MinimizeBox = false;
  119. this.Name = "Form1";
  120. this.Text = "Form1";
  121. this.Load += new System.EventHandler(this.Form1_Load);
  122. this.ResumeLayout(false);
  123. this.PerformLayout();
  124. }
  125. #endregion
  126. private System.Windows.Forms.Button BtnEnable;
  127. private System.Windows.Forms.ListBox LbxNetworkList;
  128. private System.Windows.Forms.Button BtnDisable;
  129. private System.Windows.Forms.Label LbResult;
  130. private System.Windows.Forms.Label label1;
  131. private System.Windows.Forms.Button BtnTest;
  132. private System.Windows.Forms.Button BtnLoad;
  133. }
  134. }