_ Partial Class fSelectWeatherGroup Inherits CForm '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 Form 디자이너에 필요합니다. Private components As System.ComponentModel.IContainer '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기에서는 수정하지 마세요. _ Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim ListViewItem1 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem("1561564") Dim ListViewItem2 As System.Windows.Forms.ListViewItem = New System.Windows.Forms.ListViewItem("dfsdfsdf") Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(fSelectWeatherGroup)) Me.Label1 = New System.Windows.Forms.Label() Me.btOK = New System.Windows.Forms.Button() Me.bsArea2 = New System.Windows.Forms.BindingSource(Me.components) Me.DS = New Eco2Ar.DS() Me.bsArea1 = New System.Windows.Forms.BindingSource(Me.components) Me.lv1 = New System.Windows.Forms.ListView() Me.lv2 = New System.Windows.Forms.ListView() Me.Panel1 = New System.Windows.Forms.Panel() Me.Panel2 = New System.Windows.Forms.Panel() Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) CType(Me.bsArea2, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.DS, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.bsArea1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Label1 ' Me.Label1.Dock = System.Windows.Forms.DockStyle.Top Me.Label1.Font = New System.Drawing.Font("맑은 고딕", 15.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Label1.Location = New System.Drawing.Point(10, 10) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(632, 41) Me.Label1.TabIndex = 0 Me.Label1.Text = "지역을 선택하세요" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) ' 'btOK ' Me.btOK.Dock = System.Windows.Forms.DockStyle.Bottom Me.btOK.Font = New System.Drawing.Font("맑은 고딕", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btOK.Location = New System.Drawing.Point(10, 492) Me.btOK.Name = "btOK" Me.btOK.Size = New System.Drawing.Size(632, 50) Me.btOK.TabIndex = 2 Me.btOK.Text = "확 인" Me.btOK.UseVisualStyleBackColor = True ' 'bsArea2 ' Me.bsArea2.DataMember = "weather_group" Me.bsArea2.DataSource = Me.DS ' 'DS ' Me.DS.DataSetName = "DS" Me.DS.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema ' 'bsArea1 ' Me.bsArea1.DataMember = "weather_group" Me.bsArea1.DataSource = Me.DS ' 'lv1 ' Me.lv1.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1}) Me.lv1.Dock = System.Windows.Forms.DockStyle.Fill Me.lv1.Font = New System.Drawing.Font("맑은 고딕", 20.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lv1.FullRowSelect = True Me.lv1.GridLines = True Me.lv1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None Me.lv1.HideSelection = False Me.lv1.Items.AddRange(New System.Windows.Forms.ListViewItem() {ListViewItem1}) Me.lv1.Location = New System.Drawing.Point(10, 51) Me.lv1.Name = "lv1" Me.lv1.Size = New System.Drawing.Size(311, 431) Me.lv1.TabIndex = 5 Me.lv1.UseCompatibleStateImageBehavior = False Me.lv1.View = System.Windows.Forms.View.Details ' 'lv2 ' Me.lv2.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader2}) Me.lv2.Dock = System.Windows.Forms.DockStyle.Right Me.lv2.Font = New System.Drawing.Font("맑은 고딕", 20.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lv2.FullRowSelect = True Me.lv2.GridLines = True Me.lv2.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None Me.lv2.HideSelection = False Me.lv2.Items.AddRange(New System.Windows.Forms.ListViewItem() {ListViewItem2}) Me.lv2.Location = New System.Drawing.Point(331, 51) Me.lv2.Name = "lv2" Me.lv2.Size = New System.Drawing.Size(311, 431) Me.lv2.TabIndex = 5 Me.lv2.UseCompatibleStateImageBehavior = False Me.lv2.View = System.Windows.Forms.View.Details ' 'Panel1 ' Me.Panel1.Dock = System.Windows.Forms.DockStyle.Bottom Me.Panel1.Location = New System.Drawing.Point(10, 482) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(632, 10) Me.Panel1.TabIndex = 6 ' 'Panel2 ' Me.Panel2.Dock = System.Windows.Forms.DockStyle.Right Me.Panel2.Location = New System.Drawing.Point(321, 51) Me.Panel2.Name = "Panel2" Me.Panel2.Size = New System.Drawing.Size(10, 431) Me.Panel2.TabIndex = 7 ' 'ColumnHeader1 ' Me.ColumnHeader1.Width = 300 ' 'ColumnHeader2 ' Me.ColumnHeader2.Width = 300 ' 'fSelectWeatherGroup ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(652, 552) Me.Controls.Add(Me.lv1) Me.Controls.Add(Me.Panel2) Me.Controls.Add(Me.lv2) Me.Controls.Add(Me.Panel1) Me.Controls.Add(Me.btOK) Me.Controls.Add(Me.Label1) Me.Font = New System.Drawing.Font("맑은 고딕", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "fSelectWeatherGroup" Me.Padding = New System.Windows.Forms.Padding(10) Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.Text = "적용 지역 선택" CType(Me.bsArea2, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.DS, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.bsArea1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents Label1 As Label Friend WithEvents btOK As Button Friend WithEvents bsArea2 As BindingSource Friend WithEvents bsArea1 As BindingSource Public WithEvents DS As DS Friend WithEvents lv1 As ListView Friend WithEvents lv2 As ListView Friend WithEvents Panel1 As Panel Friend WithEvents Panel2 As Panel Friend WithEvents ColumnHeader1 As ColumnHeader Friend WithEvents ColumnHeader2 As ColumnHeader End Class