Browse Source
Merge branch 'master' into viewbox-stretch-styled-prop
pull/5925/head
Max Katz
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
2 deletions
-
src/Avalonia.Controls.DataGrid/DataGrid.cs
|
|
|
@ -535,7 +535,8 @@ namespace Avalonia.Controls |
|
|
|
AvaloniaProperty.RegisterDirect<DataGrid, int>( |
|
|
|
nameof(SelectedIndex), |
|
|
|
o => o.SelectedIndex, |
|
|
|
(o, v) => o.SelectedIndex = v); |
|
|
|
(o, v) => o.SelectedIndex = v, |
|
|
|
defaultBindingMode: BindingMode.TwoWay); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the index of the current selection.
|
|
|
|
@ -553,7 +554,8 @@ namespace Avalonia.Controls |
|
|
|
AvaloniaProperty.RegisterDirect<DataGrid, object>( |
|
|
|
nameof(SelectedItem), |
|
|
|
o => o.SelectedItem, |
|
|
|
(o, v) => o.SelectedItem = v); |
|
|
|
(o, v) => o.SelectedItem = v, |
|
|
|
defaultBindingMode: BindingMode.TwoWay); |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the data item corresponding to the selected row.
|
|
|
|
|