You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

ServerConnectForm.Designer.cs 6.2 kB

15 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class ServerConnectForm
  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.btnConnect = new System.Windows.Forms.Button();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.txtPort = new System.Windows.Forms.TextBox();
  32. this.label2 = new System.Windows.Forms.Label();
  33. this.txtScheduler = new System.Windows.Forms.TextBox();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.cboServer = new System.Windows.Forms.ComboBox();
  36. this.SuspendLayout();
  37. //
  38. // btnConnect
  39. //
  40. this.btnConnect.Location = new System.Drawing.Point(32, 87);
  41. this.btnConnect.Name = "btnConnect";
  42. this.btnConnect.Size = new System.Drawing.Size(75, 23);
  43. this.btnConnect.TabIndex = 3;
  44. this.btnConnect.Text = "Connect";
  45. this.btnConnect.UseVisualStyleBackColor = true;
  46. this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
  47. //
  48. // btnCancel
  49. //
  50. this.btnCancel.Location = new System.Drawing.Point(115, 87);
  51. this.btnCancel.Name = "btnCancel";
  52. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  53. this.btnCancel.TabIndex = 4;
  54. this.btnCancel.Text = "Cancel";
  55. this.btnCancel.UseVisualStyleBackColor = true;
  56. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  57. //
  58. // label1
  59. //
  60. this.label1.AutoSize = true;
  61. this.label1.Location = new System.Drawing.Point(29, 12);
  62. this.label1.Name = "label1";
  63. this.label1.Size = new System.Drawing.Size(41, 13);
  64. this.label1.TabIndex = 2;
  65. this.label1.Text = "Server:";
  66. //
  67. // txtPort
  68. //
  69. this.txtPort.Location = new System.Drawing.Point(90, 35);
  70. this.txtPort.Name = "txtPort";
  71. this.txtPort.Size = new System.Drawing.Size(100, 20);
  72. this.txtPort.TabIndex = 1;
  73. this.txtPort.Text = "555";
  74. //
  75. // label2
  76. //
  77. this.label2.AutoSize = true;
  78. this.label2.Location = new System.Drawing.Point(29, 38);
  79. this.label2.Name = "label2";
  80. this.label2.Size = new System.Drawing.Size(29, 13);
  81. this.label2.TabIndex = 8;
  82. this.label2.Text = "Port:";
  83. //
  84. // txtScheduler
  85. //
  86. this.txtScheduler.Location = new System.Drawing.Point(90, 61);
  87. this.txtScheduler.Name = "txtScheduler";
  88. this.txtScheduler.Size = new System.Drawing.Size(100, 20);
  89. this.txtScheduler.TabIndex = 2;
  90. this.txtScheduler.Text = "QuartzScheduler";
  91. //
  92. // label3
  93. //
  94. this.label3.AutoSize = true;
  95. this.label3.Location = new System.Drawing.Point(29, 64);
  96. this.label3.Name = "label3";
  97. this.label3.Size = new System.Drawing.Size(55, 13);
  98. this.label3.TabIndex = 10;
  99. this.label3.Text = "Scheduler";
  100. //
  101. // cboServer
  102. //
  103. this.cboServer.FormattingEnabled = true;
  104. this.cboServer.Location = new System.Drawing.Point(90, 8);
  105. this.cboServer.Name = "cboServer";
  106. this.cboServer.Size = new System.Drawing.Size(100, 21);
  107. this.cboServer.TabIndex = 1;
  108. this.cboServer.SelectedIndexChanged += new System.EventHandler(cboServer_SelectedIndexChanged);
  109. //
  110. // ServerConnectForm
  111. //
  112. this.AcceptButton = this.btnConnect;
  113. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  114. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  115. this.ClientSize = new System.Drawing.Size(227, 141);
  116. this.Controls.Add(this.cboServer);
  117. this.Controls.Add(this.txtScheduler);
  118. this.Controls.Add(this.label3);
  119. this.Controls.Add(this.txtPort);
  120. this.Controls.Add(this.label2);
  121. this.Controls.Add(this.label1);
  122. this.Controls.Add(this.btnCancel);
  123. this.Controls.Add(this.btnConnect);
  124. this.Name = "ServerConnectForm";
  125. this.Text = "ServerConnectForm";
  126. this.Load += new System.EventHandler(this.ServerConnectForm_Load);
  127. this.ResumeLayout(false);
  128. this.PerformLayout();
  129. }
  130. #endregion
  131. private System.Windows.Forms.Button btnConnect;
  132. private System.Windows.Forms.Button btnCancel;
  133. private System.Windows.Forms.Label label1;
  134. private System.Windows.Forms.TextBox txtPort;
  135. private System.Windows.Forms.Label label2;
  136. private System.Windows.Forms.TextBox txtScheduler;
  137. private System.Windows.Forms.Label label3;
  138. private System.Windows.Forms.ComboBox cboServer;
  139. }
  140. }