_ Partial Class LogInformation Inherits System.Windows.Forms.Form 'Form 重写 Dispose,以清理组件列表。 _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Windows 窗体设计器所必需的 Private components As System.ComponentModel.IContainer '注意: 以下过程是 Windows 窗体设计器所必需的 '可以使用 Windows 窗体设计器修改它。 '不要使用代码编辑器修改它。 _ Private Sub InitializeComponent() Me.CheckBox1 = New System.Windows.Forms.CheckBox() Me.Label1 = New System.Windows.Forms.Label() Me.TextBox1 = New System.Windows.Forms.TextBox() Me.Label2 = New System.Windows.Forms.Label() Me.TextBox2 = New System.Windows.Forms.TextBox() Me.TextBox3 = New System.Windows.Forms.TextBox() Me.Label3 = New System.Windows.Forms.Label() Me.Button1 = New System.Windows.Forms.Button() Me.Button2 = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'CheckBox1 ' Me.CheckBox1.AutoSize = True Me.CheckBox1.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.CheckBox1.Location = New System.Drawing.Point(14, 9) Me.CheckBox1.Name = "CheckBox1" Me.CheckBox1.Size = New System.Drawing.Size(228, 23) Me.CheckBox1.TabIndex = 0 Me.CheckBox1.Text = "是否启动全部日志上报" Me.CheckBox1.UseVisualStyleBackColor = True ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.Label1.Location = New System.Drawing.Point(12, 45) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(89, 19) Me.Label1.TabIndex = 1 Me.Label1.Text = "服务端口" ' 'TextBox1 ' Me.TextBox1.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.TextBox1.Location = New System.Drawing.Point(209, 45) Me.TextBox1.MaxLength = 5 Me.TextBox1.Name = "TextBox1" Me.TextBox1.Size = New System.Drawing.Size(182, 29) Me.TextBox1.TabIndex = 2 Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.Label2.Location = New System.Drawing.Point(12, 77) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(191, 19) Me.Label2.TabIndex = 3 Me.Label2.Text = "日志上报时间(小时)" ' 'TextBox2 ' Me.TextBox2.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.TextBox2.Location = New System.Drawing.Point(209, 77) Me.TextBox2.MaxLength = 3 Me.TextBox2.Name = "TextBox2" Me.TextBox2.Size = New System.Drawing.Size(182, 29) Me.TextBox2.TabIndex = 4 Me.TextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'TextBox3 ' Me.TextBox3.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.TextBox3.Location = New System.Drawing.Point(88, 109) Me.TextBox3.MaxLength = 3000 Me.TextBox3.Name = "TextBox3" Me.TextBox3.Size = New System.Drawing.Size(303, 29) Me.TextBox3.TabIndex = 6 Me.TextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.Label3.Location = New System.Drawing.Point(12, 109) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(49, 19) Me.Label3.TabIndex = 5 Me.Label3.Text = "域名" ' 'Button1 ' Me.Button1.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.Button1.Location = New System.Drawing.Point(209, 200) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(161, 54) Me.Button1.TabIndex = 7 Me.Button1.Text = "下发日志设置" Me.Button1.UseVisualStyleBackColor = True ' 'Button2 ' Me.Button2.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(134, Byte)) Me.Button2.Location = New System.Drawing.Point(26, 200) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(149, 54) Me.Button2.TabIndex = 8 Me.Button2.Text = "读取日志设置" Me.Button2.UseVisualStyleBackColor = True ' 'LogInformation ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(403, 275) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.Button1) Me.Controls.Add(Me.TextBox3) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.TextBox2) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.TextBox1) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.CheckBox1) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "LogInformation" Me.Text = "TFTP 日志服务器设置" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents CheckBox1 As CheckBox Friend WithEvents Label1 As Label Friend WithEvents TextBox1 As TextBox Friend WithEvents Label2 As Label Friend WithEvents TextBox2 As TextBox Friend WithEvents TextBox3 As TextBox Friend WithEvents Label3 As Label Friend WithEvents Button1 As Button Friend WithEvents Button2 As Button End Class