Skip to content

Commit 950894a

Browse files
committed
Fix ColorPicker CustomPaletteColors default property value
1 parent d3426fa commit 950894a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.UI.Controls.Input/ColorPicker/ColorPicker.Properties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public partial class ColorPicker
2020
nameof(CustomPaletteColors),
2121
typeof(ObservableCollection<Windows.UI.Color>),
2222
typeof(ColorPicker),
23-
new PropertyMetadata(Windows.UI.Color.FromArgb(0x00, 0x00, 0x00, 0x00)));
23+
new PropertyMetadata(DependencyProperty.UnsetValue));
2424

2525
/// <summary>
2626
/// Gets the list of custom palette colors.

0 commit comments

Comments
 (0)