📄 form1.vb
字号:
Imports System.Data
Imports CustomControls
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Button1 As System.Windows.Forms.Button
Friend WithEvents CustomDataGrid1 As CustomDataGrid
Friend WithEvents Button2 As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button()
Me.CustomDataGrid1 = New CustomControls.CustomDataGrid()
Me.Button2 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(24, 16)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(232, 23)
Me.Button1.TabIndex = 0
Me.Button1.Text = "Load data from Northwind Products table"
'
'CustomDataGrid1
'
Me.CustomDataGrid1.BackColor = System.Drawing.SystemColors.Control
Me.CustomDataGrid1.GridBackgrundColor = System.Drawing.Color.DarkSlateGray
Me.CustomDataGrid1.Location = New System.Drawing.Point(24, 56)
Me.CustomDataGrid1.Name = "CustomDataGrid1"
Me.CustomDataGrid1.PreferedColumnWidth = 210
Me.CustomDataGrid1.RowHeaderWidth = 50
Me.CustomDataGrid1.Size = New System.Drawing.Size(536, 232)
Me.CustomDataGrid1.TabIndex = 1
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(424, 16)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(136, 23)
Me.Button2.TabIndex = 2
Me.Button2.Text = "Change Column color"
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(584, 310)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button2, Me.CustomDataGrid1, Me.Button1})
Me.Name = "Form1"
Me.Text = "Custom Grid Test"
Me.ResumeLayout(False)
End Sub
#End Region
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
' Create and Fill the DataSet.
Dim myDataSet As DataSet = New DataSet()
myDataSet.ReadXml("..\Products.xml")
' Bind the DataGrid control to the Contacts DataTable.
CustomDataGrid1.DataGrid.DataSource = myDataSet.Tables("Products")
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
CustomDataGrid1.SetColumnBackColor("ProductName", Color.Yellow)
CustomDataGrid1.SetColumnForeColor("ProductName", Color.Red)
'dgrid.Refresh()
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -