Skip to content

Commit

Permalink
Update components/ColorPicker/src/Converters/NullToTransparentConvert…
Browse files Browse the repository at this point in the history
…er.cs
  • Loading branch information
Arlodotexe authored Dec 21, 2024
1 parent ed8fa2e commit f9fa964
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public partial class NullToTransparentConverter : IValueConverter
public object Convert(object value, Type targetType, object parameter, string language) => value;

public object ConvertBack(object? value, Type targetType, object parameter, string language) => value ??
#if !WINAPPSDK
#if WINUI2
Windows.UI.Colors.Transparent;
#else
Microsoft.UI.Colors.Transparent;
Expand Down

0 comments on commit f9fa964

Please sign in to comment.