Browse Source
Merge pull request #11649 from robloo/datagrid-column-tag
Add DataGridColumn Tag property
pull/11654/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
10 additions and
0 deletions
-
src/Avalonia.Controls.DataGrid/DataGridColumn.cs
|
|
|
@ -1103,6 +1103,16 @@ namespace Avalonia.Controls |
|
|
|
get; |
|
|
|
set; |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets an object associated with this column.
|
|
|
|
/// </summary>
|
|
|
|
public object Tag |
|
|
|
{ |
|
|
|
get; |
|
|
|
set; |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Holds a Comparer to use for sorting, if not using the default.
|
|
|
|
/// </summary>
|
|
|
|
|