12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class 排序選擇
- Inherits System.Windows.Forms.Form
-
- 'Form 覆寫 Dispose 以清除元件清單。
- <System.Diagnostics.DebuggerNonUserCode()> _
- 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 設計工具進行修改。
- '請勿使用程式碼編輯器進行修改。
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.控制表_dgv = New System.Windows.Forms.DataGridView()
- Me.存檔_bt = New System.Windows.Forms.Button()
- Me.Label4 = New System.Windows.Forms.Label()
- CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SuspendLayout()
- '
- '控制表_dgv
- '
- Me.控制表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.控制表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.控制表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.控制表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.控制表_dgv.Location = New System.Drawing.Point(9, 8)
- Me.控制表_dgv.Margin = New System.Windows.Forms.Padding(5, 5, 5, 5)
- Me.控制表_dgv.Name = "控制表_dgv"
- Me.控制表_dgv.RowHeadersWidth = 5
- Me.控制表_dgv.RowTemplate.Height = 24
- Me.控制表_dgv.Size = New System.Drawing.Size(232, 349)
- Me.控制表_dgv.TabIndex = 1775
- '
- '存檔_bt
- '
- Me.存檔_bt.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.存檔_bt.Location = New System.Drawing.Point(9, 360)
- Me.存檔_bt.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.存檔_bt.Name = "存檔_bt"
- Me.存檔_bt.Size = New System.Drawing.Size(232, 31)
- Me.存檔_bt.TabIndex = 1776
- Me.存檔_bt.Text = "存檔"
- Me.存檔_bt.UseVisualStyleBackColor = True
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.ForeColor = System.Drawing.Color.Red
- Me.Label4.Location = New System.Drawing.Point(14, 395)
- Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(186, 16)
- Me.Label4.TabIndex = 1788
- Me.Label4.Text = "PS : 雙擊排序欄位,可改變順逆排"
- '
- '排序選擇
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(253, 421)
- Me.Controls.Add(Me.Label4)
- Me.Controls.Add(Me.存檔_bt)
- Me.Controls.Add(Me.控制表_dgv)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.Name = "排序選擇"
- Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
- Me.Text = "排序選擇"
- CType(Me.控制表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
- Friend WithEvents 控制表_dgv As DataGridView
- Friend WithEvents 存檔_bt As Button
- Friend WithEvents Label4 As Label
- End Class
|