datagridview所有属性的默认值
时间: 2024-06-05 15:12:12 浏览: 89
以下是 DataGridView 控件中一些常见属性的默认值:
- AllowUserToAddRows: true
- AllowUserToDeleteRows: true
- AllowUserToOrderColumns: true
- AllowUserToResizeColumns: true
- AllowUserToResizeRows: true
- AlternatingRowsDefaultCellStyle.BackColor: Empty
- BackgroundColor: SystemColors.Window
- BorderStyle: Fixed3D
- ColumnHeadersDefaultCellStyle.BackColor: SystemColors.Control
- ColumnHeadersDefaultCellStyle.Font: System.Drawing.SystemFonts.DefaultFont
- ColumnHeadersHeight: 23
- EnableHeadersVisualStyles: true
- MultiSelect: false
- ReadOnly: false
- RowHeadersVisible: true
- RowHeadersWidth: 60
- RowsDefaultCellStyle.BackColor: SystemColors.Window
- SelectionMode: FullRowSelect
- SizeMode: Normal
- TabIndex: 0
- TabStop: true
请注意,这些属性的默认值可能因不同的操作系统、不同的 .NET Framework 版本、不同的文化环境或应用程序的特定设置而有所不同。
阅读全文