FrmSeting.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. namespace TimeSync
  2. {
  3. partial class FrmSeting
  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.label2 = new System.Windows.Forms.Label();
  30. this.label3 = new System.Windows.Forms.Label();
  31. this.textBox1 = new System.Windows.Forms.TextBox();
  32. this.textBox2 = new System.Windows.Forms.TextBox();
  33. this.textBox3 = new System.Windows.Forms.TextBox();
  34. this.btnOk = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  41. this.label1.Location = new System.Drawing.Point(45, 48);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(120, 16);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "服务器IP地址:";
  46. //
  47. // label2
  48. //
  49. this.label2.AutoSize = true;
  50. this.label2.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  51. this.label2.Location = new System.Drawing.Point(45, 108);
  52. this.label2.Name = "label2";
  53. this.label2.Size = new System.Drawing.Size(120, 16);
  54. this.label2.TabIndex = 1;
  55. this.label2.Text = "服务器端口号:";
  56. //
  57. // label3
  58. //
  59. this.label3.AutoSize = true;
  60. this.label3.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  61. this.label3.Location = new System.Drawing.Point(77, 168);
  62. this.label3.Name = "label3";
  63. this.label3.Size = new System.Drawing.Size(88, 16);
  64. this.label3.TabIndex = 2;
  65. this.label3.Text = "间隔时间:";
  66. //
  67. // textBox1
  68. //
  69. this.textBox1.Location = new System.Drawing.Point(160, 48);
  70. this.textBox1.Name = "textBox1";
  71. this.textBox1.Size = new System.Drawing.Size(129, 21);
  72. this.textBox1.TabIndex = 3;
  73. //
  74. // textBox2
  75. //
  76. this.textBox2.Location = new System.Drawing.Point(160, 109);
  77. this.textBox2.Name = "textBox2";
  78. this.textBox2.Size = new System.Drawing.Size(129, 21);
  79. this.textBox2.TabIndex = 4;
  80. //
  81. // textBox3
  82. //
  83. this.textBox3.Location = new System.Drawing.Point(160, 169);
  84. this.textBox3.Name = "textBox3";
  85. this.textBox3.Size = new System.Drawing.Size(129, 21);
  86. this.textBox3.TabIndex = 5;
  87. //
  88. // btnOk
  89. //
  90. this.btnOk.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
  91. this.btnOk.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  92. this.btnOk.Location = new System.Drawing.Point(125, 213);
  93. this.btnOk.Name = "btnOk";
  94. this.btnOk.Size = new System.Drawing.Size(112, 36);
  95. this.btnOk.TabIndex = 6;
  96. this.btnOk.Text = "确定";
  97. this.btnOk.UseVisualStyleBackColor = true;
  98. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  99. //
  100. // FrmSeting
  101. //
  102. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  103. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  104. this.ClientSize = new System.Drawing.Size(353, 276);
  105. this.Controls.Add(this.btnOk);
  106. this.Controls.Add(this.textBox3);
  107. this.Controls.Add(this.textBox2);
  108. this.Controls.Add(this.textBox1);
  109. this.Controls.Add(this.label3);
  110. this.Controls.Add(this.label2);
  111. this.Controls.Add(this.label1);
  112. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  113. this.MaximizeBox = false;
  114. this.Name = "FrmSeting";
  115. this.Text = "FrmSeting";
  116. this.Load += new System.EventHandler(this.FrmSeting_Load);
  117. this.ResumeLayout(false);
  118. this.PerformLayout();
  119. }
  120. #endregion
  121. private System.Windows.Forms.Label label1;
  122. private System.Windows.Forms.Label label2;
  123. private System.Windows.Forms.Label label3;
  124. private System.Windows.Forms.TextBox textBox1;
  125. private System.Windows.Forms.TextBox textBox2;
  126. private System.Windows.Forms.TextBox textBox3;
  127. private System.Windows.Forms.Button btnOk;
  128. }
  129. }