How to change title bar image in WPF Window?https://stackoverflow.com/questions/5101895/how-to-change-title-bar-image-in-wpf-window
https://www.itread01.com/content/1520581221.html
WPF調用圖片路徑,或資源圖片
Adding Something to DataGridViewhttps://me1237guy.pixnet.net/blog/post/59183044-adding-something-to-datagridview
怎么去掉DataGridView中最后空白的一行https://bbs.csdn.net/topics/360135339
How to: Bind data to the Windows Forms DataGridView controlhttps://docs.microsoft.com/en-us/dotnet/desktop/winforms/controls/how-to-bind-data-to-the-windows-forms-datagridview-control?view=netframeworkdesktop-4.8
Ways to Bind DataGridView in C# Windows Forms
https://www.c-sharpcorner.com/UploadFile/deveshomar/ways-to-bind-datagridview-in-window-forms-C-Sharp/
c# winform 關於DataGridView的一些操作(很全,絕對夠用)
https://www.itread01.com/content/1546688738.html
datagridview前面还有个小箭头,这个如何去掉呢? ==> dataGridView的RowHeadersVisible属性设为false
DataGridview 選取整列資料 ==> 把SelectionMode 屬性改成 FullRowSelect
選取某列 ==>dataGridView1.Rows[i].Selected=true;
DataGridview的總row數(垂直方向) =>DataGridView.RowCount
DataGridview的總column(水平方向) =>DataGridView1.ColumnCount
取值 =>dataGridView1.Rows[0].Cells[1].Value
程式執行按鈕 ==>Button.PerformClick