namespace SNTP_server_interface { partial class Form1 { /// /// 設計工具所需的變數。 /// private System.ComponentModel.IContainer components = null; /// /// 清除任何使用中的資源。 /// /// 如果應該公開 Managed 資源則為 true,否則為 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 設計工具產生的程式碼 /// /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。 /// /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); this.label1 = new System.Windows.Forms.Label(); this.butStart = new System.Windows.Forms.Button(); this.butClose = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoEllipsis = true; this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(22, 20); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(392, 72); this.label1.TabIndex = 0; this.label1.Text = resources.GetString("label1.Text"); this.label1.Click += new System.EventHandler(this.label1_Click); // // butStart // this.butStart.Location = new System.Drawing.Point(70, 114); this.butStart.Name = "butStart"; this.butStart.Size = new System.Drawing.Size(106, 47); this.butStart.TabIndex = 1; this.butStart.Text = "Start time service"; this.butStart.UseVisualStyleBackColor = true; this.butStart.Click += new System.EventHandler(this.butStart_Click); // // butClose // this.butClose.Location = new System.Drawing.Point(254, 114); this.butClose.Name = "butClose"; this.butClose.Size = new System.Drawing.Size(106, 47); this.butClose.TabIndex = 2; this.butClose.Text = "Close time service"; this.butClose.UseVisualStyleBackColor = true; this.butClose.Click += new System.EventHandler(this.butClose_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(433, 182); this.Controls.Add(this.butClose); this.Controls.Add(this.butStart); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Configure an authoritative time server in Windows Server"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Button butStart; private System.Windows.Forms.Button butClose; } }