Namespace UTSModule.Project Partial Class DlgLoadStation 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.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel() Me.OK_Button = New System.Windows.Forms.Button() Me.Cancel_Button = New System.Windows.Forms.Button() Me.PicStationPreview = New System.Windows.Forms.PictureBox() Me.CboStation = New System.Windows.Forms.ComboBox() Me.LblStation = New System.Windows.Forms.Label() Me.CboProject = New System.Windows.Forms.ComboBox() Me.LblProject = New System.Windows.Forms.Label() Me.Label1 = New System.Windows.Forms.Label() Me.GrpStationDesc = New System.Windows.Forms.GroupBox() Me.Label3 = New System.Windows.Forms.Label() Me.RtxStationDesc = New System.Windows.Forms.RichTextBox() Me.GroupBox1 = New System.Windows.Forms.GroupBox() Me.RtxProjectDesc = New System.Windows.Forms.RichTextBox() Me.Label2 = New System.Windows.Forms.Label() Me.TableLayoutPanel1.SuspendLayout CType(Me.PicStationPreview,System.ComponentModel.ISupportInitialize).BeginInit Me.GrpStationDesc.SuspendLayout Me.GroupBox1.SuspendLayout Me.SuspendLayout ' 'TableLayoutPanel1 ' Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right),System.Windows.Forms.AnchorStyles) Me.TableLayoutPanel1.ColumnCount = 2 Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0) Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0) Me.TableLayoutPanel1.Location = New System.Drawing.Point(534, 430) Me.TableLayoutPanel1.Name = "TableLayoutPanel1" Me.TableLayoutPanel1.RowCount = 1 Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50!)) Me.TableLayoutPanel1.Size = New System.Drawing.Size(240, 39) Me.TableLayoutPanel1.TabIndex = 0 ' 'OK_Button ' Me.OK_Button.Dock = System.Windows.Forms.DockStyle.Fill Me.OK_Button.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.OK_Button.Location = New System.Drawing.Point(3, 3) Me.OK_Button.Name = "OK_Button" Me.OK_Button.Size = New System.Drawing.Size(114, 33) Me.OK_Button.TabIndex = 0 Me.OK_Button.Text = "确定" ' 'Cancel_Button ' Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.Cancel_Button.Dock = System.Windows.Forms.DockStyle.Fill Me.Cancel_Button.Font = New System.Drawing.Font("宋体", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.Cancel_Button.Location = New System.Drawing.Point(123, 3) Me.Cancel_Button.Name = "Cancel_Button" Me.Cancel_Button.Size = New System.Drawing.Size(114, 33) Me.Cancel_Button.TabIndex = 1 Me.Cancel_Button.Text = "取消" ' 'PicStationPreview ' Me.PicStationPreview.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle Me.PicStationPreview.Location = New System.Drawing.Point(24, 181) Me.PicStationPreview.Name = "PicStationPreview" Me.PicStationPreview.Size = New System.Drawing.Size(200, 200) Me.PicStationPreview.TabIndex = 5 Me.PicStationPreview.TabStop = false ' 'CboStation ' Me.CboStation.Font = New System.Drawing.Font("宋体", 12!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.CboStation.FormattingEnabled = true Me.CboStation.Location = New System.Drawing.Point(24, 49) Me.CboStation.Name = "CboStation" Me.CboStation.Size = New System.Drawing.Size(200, 24) Me.CboStation.TabIndex = 9 ' 'LblStation ' Me.LblStation.AutoSize = true Me.LblStation.Location = New System.Drawing.Point(6, 27) Me.LblStation.Name = "LblStation" Me.LblStation.Size = New System.Drawing.Size(41, 12) Me.LblStation.TabIndex = 8 Me.LblStation.Text = "站位:" ' 'CboProject ' Me.CboProject.Font = New System.Drawing.Font("宋体", 12!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.CboProject.FormattingEnabled = true Me.CboProject.Location = New System.Drawing.Point(24, 49) Me.CboProject.Name = "CboProject" Me.CboProject.Size = New System.Drawing.Size(200, 24) Me.CboProject.TabIndex = 7 ' 'LblProject ' Me.LblProject.AutoSize = true Me.LblProject.Location = New System.Drawing.Point(6, 27) Me.LblProject.Name = "LblProject" Me.LblProject.Size = New System.Drawing.Size(41, 12) Me.LblProject.TabIndex = 6 Me.LblProject.Text = "项目:" ' 'Label1 ' Me.Label1.AutoSize = true Me.Label1.Location = New System.Drawing.Point(6, 166) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(41, 12) Me.Label1.TabIndex = 10 Me.Label1.Text = "预览:" ' 'GrpStationDesc ' Me.GrpStationDesc.Controls.Add(Me.Label3) Me.GrpStationDesc.Controls.Add(Me.RtxStationDesc) Me.GrpStationDesc.Controls.Add(Me.CboStation) Me.GrpStationDesc.Controls.Add(Me.LblStation) Me.GrpStationDesc.Location = New System.Drawing.Point(291, 15) Me.GrpStationDesc.Name = "GrpStationDesc" Me.GrpStationDesc.Size = New System.Drawing.Size(483, 400) Me.GrpStationDesc.TabIndex = 11 Me.GrpStationDesc.TabStop = false Me.GrpStationDesc.Text = "站位描述" ' 'Label3 ' Me.Label3.AutoSize = true Me.Label3.Location = New System.Drawing.Point(6, 82) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(41, 12) Me.Label3.TabIndex = 11 Me.Label3.Text = "简介:" ' 'RtxStationDesc ' Me.RtxStationDesc.BorderStyle = System.Windows.Forms.BorderStyle.None Me.RtxStationDesc.Font = New System.Drawing.Font("宋体", 12!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.RtxStationDesc.ForeColor = System.Drawing.Color.Gray Me.RtxStationDesc.Location = New System.Drawing.Point(24, 97) Me.RtxStationDesc.Name = "RtxStationDesc" Me.RtxStationDesc.ReadOnly = true Me.RtxStationDesc.Size = New System.Drawing.Size(434, 284) Me.RtxStationDesc.TabIndex = 10 Me.RtxStationDesc.Text = "" ' 'GroupBox1 ' Me.GroupBox1.Controls.Add(Me.RtxProjectDesc) Me.GroupBox1.Controls.Add(Me.Label2) Me.GroupBox1.Controls.Add(Me.CboProject) Me.GroupBox1.Controls.Add(Me.Label1) Me.GroupBox1.Controls.Add(Me.LblProject) Me.GroupBox1.Controls.Add(Me.PicStationPreview) Me.GroupBox1.Location = New System.Drawing.Point(23, 15) Me.GroupBox1.Name = "GroupBox1" Me.GroupBox1.Size = New System.Drawing.Size(240, 400) Me.GroupBox1.TabIndex = 12 Me.GroupBox1.TabStop = false Me.GroupBox1.Text = "项目描述" ' 'RtxProjectDesc ' Me.RtxProjectDesc.BorderStyle = System.Windows.Forms.BorderStyle.None Me.RtxProjectDesc.Font = New System.Drawing.Font("宋体", 12!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(134,Byte)) Me.RtxProjectDesc.Location = New System.Drawing.Point(24, 97) Me.RtxProjectDesc.Name = "RtxProjectDesc" Me.RtxProjectDesc.ReadOnly = true Me.RtxProjectDesc.Size = New System.Drawing.Size(200, 57) Me.RtxProjectDesc.TabIndex = 12 Me.RtxProjectDesc.Text = "" ' 'Label2 ' Me.Label2.AutoSize = true Me.Label2.Location = New System.Drawing.Point(6, 82) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(41, 12) Me.Label2.TabIndex = 8 Me.Label2.Text = "简介:" ' 'DlgLoadStation ' Me.AcceptButton = Me.OK_Button Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 12!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.CancelButton = Me.Cancel_Button Me.ClientSize = New System.Drawing.Size(794, 470) Me.Controls.Add(Me.GroupBox1) Me.Controls.Add(Me.GrpStationDesc) Me.Controls.Add(Me.TableLayoutPanel1) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = false Me.MinimizeBox = false Me.Name = "DlgLoadStation" Me.ShowInTaskbar = false Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent Me.Text = "DlgLoadStation" Me.TableLayoutPanel1.ResumeLayout(false) CType(Me.PicStationPreview,System.ComponentModel.ISupportInitialize).EndInit Me.GrpStationDesc.ResumeLayout(false) Me.GrpStationDesc.PerformLayout Me.GroupBox1.ResumeLayout(false) Me.GroupBox1.PerformLayout Me.ResumeLayout(false) End Sub Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel Friend WithEvents OK_Button As System.Windows.Forms.Button Friend WithEvents Cancel_Button As System.Windows.Forms.Button Friend WithEvents PicStationPreview As Windows.Forms.PictureBox Friend WithEvents CboStation As Windows.Forms.ComboBox Friend WithEvents LblStation As Windows.Forms.Label Friend WithEvents CboProject As Windows.Forms.ComboBox Friend WithEvents LblProject As Windows.Forms.Label Friend WithEvents Label1 As Windows.Forms.Label Friend WithEvents GrpStationDesc As Windows.Forms.GroupBox Friend WithEvents GroupBox1 As Windows.Forms.GroupBox Friend WithEvents Label2 As Windows.Forms.Label Friend WithEvents Label3 As Windows.Forms.Label Friend WithEvents RtxStationDesc As Windows.Forms.RichTextBox Friend WithEvents RtxProjectDesc As Windows.Forms.RichTextBox End Class End Namespace