Browse Source
Merge pull request #9854 from workgroupengineering/fixes/Warnings/CA1223
fix: Warnings CA1823
pull/9866/head
Max Katz
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
5 deletions
-
src/Avalonia.Controls.DataGrid/DataGrid.cs
|
|
|
@ -51,15 +51,10 @@ namespace Avalonia.Controls |
|
|
|
private const string DATAGRID_elementTopLeftCornerHeaderName = "PART_TopLeftCornerHeader"; |
|
|
|
private const string DATAGRID_elementTopRightCornerHeaderName = "PART_TopRightCornerHeader"; |
|
|
|
private const string DATAGRID_elementBottomRightCornerHeaderName = "PART_BottomRightCorner"; |
|
|
|
private const string DATAGRID_elementValidationSummary = "PART_ValidationSummary"; |
|
|
|
private const string DATAGRID_elementVerticalScrollbarName = "PART_VerticalScrollbar"; |
|
|
|
|
|
|
|
private const bool DATAGRID_defaultAutoGenerateColumns = true; |
|
|
|
internal const bool DATAGRID_defaultCanUserReorderColumns = true; |
|
|
|
internal const bool DATAGRID_defaultCanUserResizeColumns = true; |
|
|
|
internal const bool DATAGRID_defaultCanUserSortColumns = true; |
|
|
|
private const DataGridRowDetailsVisibilityMode DATAGRID_defaultRowDetailsVisibility = DataGridRowDetailsVisibilityMode.VisibleWhenSelected; |
|
|
|
private const DataGridSelectionMode DATAGRID_defaultSelectionMode = DataGridSelectionMode.Extended; |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// The default order to use for columns when there is no <see cref="DisplayAttribute.Order"/>
|
|
|
|
|