Browse Source

Move ColorPicker theme definitions into theme folders

pull/8050/head
robloo 4 years ago
parent
commit
a86e0cc64e
  1. 4
      samples/ControlCatalog/App.xaml.cs
  2. 0
      src/Avalonia.Controls.ColorPicker/Themes/Default/Default.xaml
  3. 0
      src/Avalonia.Controls.ColorPicker/Themes/Fluent/Fluent.xaml

4
samples/ControlCatalog/App.xaml.cs

@ -20,12 +20,12 @@ namespace ControlCatalog
public static readonly StyleInclude ColorPickerFluent = new StyleInclude(new Uri("avares://ControlCatalog/Styles"))
{
Source = new Uri("avares://Avalonia.Controls.ColorPicker/Themes/Fluent.xaml")
Source = new Uri("avares://Avalonia.Controls.ColorPicker/Themes/Fluent/Fluent.xaml")
};
public static readonly StyleInclude ColorPickerDefault = new StyleInclude(new Uri("avares://ControlCatalog/Styles"))
{
Source = new Uri("avares://Avalonia.Controls.ColorPicker/Themes/Default.xaml")
Source = new Uri("avares://Avalonia.Controls.ColorPicker/Themes/Default/Default.xaml")
};
public static readonly StyleInclude DataGridFluent = new StyleInclude(new Uri("avares://ControlCatalog/Styles"))

0
src/Avalonia.Controls.ColorPicker/Themes/Default.xaml → src/Avalonia.Controls.ColorPicker/Themes/Default/Default.xaml

0
src/Avalonia.Controls.ColorPicker/Themes/Fluent.xaml → src/Avalonia.Controls.ColorPicker/Themes/Fluent/Fluent.xaml

Loading…
Cancel
Save