Skip to content

Commit

Permalink
fix placeholder on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward Miller committed Dec 16, 2024
1 parent 5b3f608 commit 3179ec1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Maui.DataGrid/DataGridHeaderRow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,10 @@ private void SetFilterRow(DataGridColumn column)
else if (DataGrid.FilteringEnabled && DataGrid.Columns.Any(c => c.FilteringEnabled))
{
// Add placeholder
column.FilterTextboxContainer.Content = new BoxView
column.FilterTextboxContainer.Content = new Entry
{
Color = Colors.Transparent,
Style = column.FilterTextbox.Style,
IsEnabled = false,
};
}
else
Expand Down

0 comments on commit 3179ec1

Please sign in to comment.