Skip to content

Commit

Permalink
remove blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Dec 22, 2023
1 parent 4806b60 commit e41b223
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions Maui.DataGrid/DataGrid.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,6 @@ private void SortAndPaginate(SortData? sortData = null)
public static readonly BindableProperty ItemSizingStrategyProperty =
BindablePropertyExtensions.Create<DataGrid, ItemSizingStrategy>(DeviceInfo.Platform == DevicePlatform.Android ? ItemSizingStrategy.MeasureAllItems : ItemSizingStrategy.MeasureFirstItem);


public static readonly BindableProperty RowToEditProperty =
BindablePropertyExtensions.Create<DataGrid, object>();

Expand Down Expand Up @@ -658,7 +657,6 @@ public object RowToEdit
set => SetValue(RowToEditProperty, value);
}


/// <summary>
/// Background color of the rows. It repeats colors consecutively for rows.
/// </summary>
Expand Down
1 change: 0 additions & 1 deletion Maui.DataGrid/DataGridRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,6 @@ private View CreateEditCell(DataGridColumn col)
return cell;
}


private void UpdateColors()
{
_hasSelected = DataGrid.SelectedItem == BindingContext;
Expand Down

0 comments on commit e41b223

Please sign in to comment.