Skip to content

Commit e77fe69

Browse files
Discard changes to src/TableView.Properties.cs
1 parent 5da7fe8 commit e77fe69

1 file changed

Lines changed: 1 addition & 16 deletions

File tree

src/TableView.Properties.cs

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Microsoft.UI.Xaml;
1+
using Microsoft.UI.Xaml;
22
using Microsoft.UI.Xaml.Controls;
33
using Microsoft.UI.Xaml.Controls.Primitives;
44
using Microsoft.UI.Xaml.Data;
@@ -254,12 +254,6 @@ public partial class TableView
254254
/// Identifies the CanReorderColumns dependency property.
255255
/// </summary>
256256
public static readonly DependencyProperty CanReorderColumnsProperty = DependencyProperty.Register(nameof(CanReorderColumns), typeof(bool), typeof(TableView), new PropertyMetadata(true));
257-
258-
/// <summary>
259-
/// Identifies the UseListViewHotkeys dependency property.
260-
/// </summary>
261-
public static readonly DependencyProperty UseListViewHotkeysProperty = DependencyProperty.Register(nameof(UseListViewHotkeys), typeof(bool), typeof(TableView), new PropertyMetadata(false));
262-
263257
/// <summary>
264258
/// Gets or sets a value indicating whether opening the column filter over header right-click is enabled.
265259
/// </summary>
@@ -759,15 +753,6 @@ public bool CanReorderColumns
759753
set => SetValue(CanReorderColumnsProperty, value);
760754
}
761755

762-
/// <summary>
763-
/// Gets or sets whether the TableView should use ListView like hotkeys for navigation and selection.
764-
/// </summary>
765-
public bool UseListViewHotkeys
766-
{
767-
get => (bool)GetValue(UseListViewHotkeysProperty);
768-
set => SetValue(UseListViewHotkeysProperty, value);
769-
}
770-
771756
/// <summary>
772757
/// Handles changes to the ItemsSource property.
773758
/// </summary>

0 commit comments

Comments
 (0)