Skip to content

Commit e0ad993

Browse files
authored
Fix white on white text in DataGrid (#65)
1 parent ff81069 commit e0ad993

File tree

4 files changed

+72
-7
lines changed

4 files changed

+72
-7
lines changed

src/MacOS.Avalonia.Theme/Controls/DataGrid.axaml

+12-7
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,20 @@
102102
<Setter Property="Background" Value="{DynamicResource TransparentBrush}" />
103103
<Setter Property="Foreground">
104104
<Setter.Value>
105-
<MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
106-
<MultiBinding Converter="{x:Static BoolConverters.Or}">
107-
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=DataGridRow}" Path="IsSelected"
108-
Converter="{x:Static BoolConverters.Not}" />
109-
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive"
110-
Converter="{x:Static BoolConverters.Not}" />
105+
<MultiBinding Converter="{StaticResource BooleanToChoiceConverter}" ConverterParameter="Foreground White">
106+
<MultiBinding Converter="{x:Static BoolConverters.And}">
107+
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=DataGridRow}" Path="IsSelected" />
108+
<MultiBinding Converter="{x:Static BoolConverters.Or}">
109+
<MultiBinding Converter="{StaticResource IsUnsetConverter}">
110+
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" />
111+
</MultiBinding>
112+
<MultiBinding Converter="{StaticResource IsExplicitlyTrueConverter}">
113+
<Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" />
114+
</MultiBinding>
115+
</MultiBinding>
111116
</MultiBinding>
112-
<Binding Source="{StaticResource ForegroundHighBrush}" />
113117
<Binding Source="{StaticResource DataGridForegroundSelectedBrush}" />
118+
<Binding Source="{StaticResource ForegroundHighBrush}" />
114119
</MultiBinding>
115120
</Setter.Value>
116121
</Setter>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System.Globalization;
2+
using Avalonia.Data.Converters;
3+
4+
namespace MacOS.Avalonia.Theme.Converters;
5+
6+
/// <summary>
7+
/// Takes a _single_ input and returns a boolean based on whether the input is a boolean and true.
8+
/// </summary>
9+
/// <param name="value">Any property that may or may not exist</param>
10+
/// <returns>True if the input resolves to true, else False</returns>
11+
/// <remarks>
12+
/// This Converter can be used to check for a property when the source may not even exist. It needs to be a
13+
/// MultiValueConverter,
14+
/// because Avalonia will not call a normal converter if the input value is `unset`.
15+
/// Having this converter is useful, because Avalonia's AND and OR converters will return 'unset' if any of the inputs
16+
/// are unset, even when one of the inputs is a boolean and would be sufficient to verify the conjunction!
17+
/// </remarks>
18+
public class IsExplicitlyTrueConverter : IMultiValueConverter
19+
{
20+
public object Convert(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
21+
{
22+
return values[0] is true;
23+
}
24+
25+
public object ConvertBack(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
26+
{
27+
throw new NotImplementedException();
28+
}
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
using System.Globalization;
2+
using Avalonia;
3+
using Avalonia.Data.Converters;
4+
5+
namespace MacOS.Avalonia.Theme.Converters;
6+
7+
/// <summary>
8+
/// Takes a _single_ input and returns a boolean if it is unset.
9+
/// </summary>
10+
/// <param name="value">Any property or property source that may or may not exist</param>
11+
/// <returns>True if the input resolves to AvaloniaProperty.UnsetValue, else False</returns>
12+
/// <remarks>
13+
/// This Converter can be used to check for the presence of a control or property. It needs to be a MultiValueConverter,
14+
/// because Avalonia will not call a normal converter if the input value is `unset`.
15+
/// Having this converter is useful, because Avalonia's AND and OR converters will return 'unset' if any of the inputs
16+
/// are unset, even when one of the inputs is a boolean and would be sufficient to verify the conjunction!
17+
/// </remarks>
18+
public class IsUnsetConverter : IMultiValueConverter
19+
{
20+
public object Convert(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
21+
{
22+
return values[0] == AvaloniaProperty.UnsetValue;
23+
}
24+
25+
public object ConvertBack(IList<object?> values, Type targetType, object? parameter, CultureInfo culture)
26+
{
27+
throw new NotImplementedException();
28+
}
29+
}

src/MacOS.Avalonia.Theme/Converters/_index.axaml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
<converters:CharToMacOsPasswordCharConverter x:Key="CharToMacOsPasswordCharConverter" />
88
<converters:RevealPasswordToFontSizeConverter x:Key="RevealPasswordToFontSizeConverter" />
99
<converters:BooleanToChoiceConverter x:Key="BooleanToChoiceConverter" />
10+
<converters:IsUnsetConverter x:Key="IsUnsetConverter" />
11+
<converters:IsExplicitlyTrueConverter x:Key="IsExplicitlyTrueConverter" />
1012
<converters:ClassToChoiceConverter x:Key="ClassToChoiceConverter" />
1113
<converters:ColorToCssFillConverter x:Key="ColorToCssFillConverter" />
1214
<converters:ThicknessToSelectiveThicknessConverter x:Key="ThicknessToSelectiveThicknessConverter" />

0 commit comments

Comments
 (0)