Skip to content

Commit

Permalink
use correct declaring type
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Dec 27, 2023
1 parent bec8c9e commit a46325a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Maui.DataGrid/DataGridRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public object RowToEdit
#region Bindable Properties

public static readonly BindableProperty DataGridProperty =
BindablePropertyExtensions.Create<DataGrid, DataGrid>(null, BindingMode.OneTime,
BindablePropertyExtensions.Create<DataGridRow, DataGrid>(null, BindingMode.OneTime,
propertyChanged: (b, o, n) =>
{
var self = (DataGridRow)b;
Expand All @@ -49,7 +49,7 @@ public object RowToEdit
});

public static readonly BindableProperty RowToEditProperty =
BindablePropertyExtensions.Create<DataGrid, object>(null, BindingMode.OneWay,
BindablePropertyExtensions.Create<DataGridRow, object>(null, BindingMode.OneWay,
propertyChanged: (b, o, n) =>
{
if (o != n && b is DataGridRow row)
Expand Down

0 comments on commit a46325a

Please sign in to comment.