frm_ConnectAll.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. namespace RemoteClient
  2. {
  3. partial class frm_ConnectAll
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frm_ConnectAll));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.btn_Enter = new System.Windows.Forms.Button();
  31. this.ipc_StartIP = new IPAddressControlLib.IPAddressControl();
  32. this.ipc_EndIP = new IPAddressControlLib.IPAddressControl();
  33. this.label3 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // label1
  37. //
  38. this.label1.AutoSize = true;
  39. this.label1.Location = new System.Drawing.Point(7, 13);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(131, 12);
  42. this.label1.TabIndex = 0;
  43. this.label1.Text = "输入起始IP以及结束IP:";
  44. //
  45. // btn_Enter
  46. //
  47. this.btn_Enter.DialogResult = System.Windows.Forms.DialogResult.OK;
  48. this.btn_Enter.Location = new System.Drawing.Point(101, 101);
  49. this.btn_Enter.Name = "btn_Enter";
  50. this.btn_Enter.Size = new System.Drawing.Size(87, 28);
  51. this.btn_Enter.TabIndex = 2;
  52. this.btn_Enter.Text = "确定";
  53. this.btn_Enter.UseVisualStyleBackColor = true;
  54. this.btn_Enter.Click += new System.EventHandler(this.btn_Enter_Click);
  55. //
  56. // ipc_StartIP
  57. //
  58. this.ipc_StartIP.AllowInternalTab = false;
  59. this.ipc_StartIP.AutoHeight = true;
  60. this.ipc_StartIP.BackColor = System.Drawing.SystemColors.Window;
  61. this.ipc_StartIP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  62. this.ipc_StartIP.Cursor = System.Windows.Forms.Cursors.IBeam;
  63. this.ipc_StartIP.Location = new System.Drawing.Point(12, 44);
  64. this.ipc_StartIP.MinimumSize = new System.Drawing.Size(93, 21);
  65. this.ipc_StartIP.Name = "ipc_StartIP";
  66. this.ipc_StartIP.ReadOnly = false;
  67. this.ipc_StartIP.Size = new System.Drawing.Size(116, 21);
  68. this.ipc_StartIP.TabIndex = 3;
  69. this.ipc_StartIP.Text = "...";
  70. //
  71. // ipc_EndIP
  72. //
  73. this.ipc_EndIP.AllowInternalTab = false;
  74. this.ipc_EndIP.AutoHeight = true;
  75. this.ipc_EndIP.BackColor = System.Drawing.SystemColors.Window;
  76. this.ipc_EndIP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  77. this.ipc_EndIP.Cursor = System.Windows.Forms.Cursors.IBeam;
  78. this.ipc_EndIP.Location = new System.Drawing.Point(158, 44);
  79. this.ipc_EndIP.MinimumSize = new System.Drawing.Size(93, 21);
  80. this.ipc_EndIP.Name = "ipc_EndIP";
  81. this.ipc_EndIP.ReadOnly = false;
  82. this.ipc_EndIP.Size = new System.Drawing.Size(116, 21);
  83. this.ipc_EndIP.TabIndex = 4;
  84. this.ipc_EndIP.Text = "...";
  85. //
  86. // label3
  87. //
  88. this.label3.AutoSize = true;
  89. this.label3.Location = new System.Drawing.Point(140, 48);
  90. this.label3.Name = "label3";
  91. this.label3.Size = new System.Drawing.Size(11, 12);
  92. this.label3.TabIndex = 5;
  93. this.label3.Text = "-";
  94. //
  95. // frm_ConnectAll
  96. //
  97. this.AcceptButton = this.btn_Enter;
  98. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  99. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100. this.ClientSize = new System.Drawing.Size(292, 155);
  101. this.Controls.Add(this.label3);
  102. this.Controls.Add(this.ipc_EndIP);
  103. this.Controls.Add(this.ipc_StartIP);
  104. this.Controls.Add(this.btn_Enter);
  105. this.Controls.Add(this.label1);
  106. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  107. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  108. this.MaximizeBox = false;
  109. this.MinimizeBox = false;
  110. this.Name = "frm_ConnectAll";
  111. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  112. this.Text = "连接所有安装服务端的主机";
  113. this.TopMost = true;
  114. this.ResumeLayout(false);
  115. this.PerformLayout();
  116. }
  117. #endregion
  118. private System.Windows.Forms.Label label1;
  119. private System.Windows.Forms.Button btn_Enter;
  120. private IPAddressControlLib.IPAddressControl ipc_StartIP;
  121. private IPAddressControlLib.IPAddressControl ipc_EndIP;
  122. private System.Windows.Forms.Label label3;
  123. }
  124. }