blob: 541479e1ede0ac08c0550363f4cb0a09af334a90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
using System;
using MaterialDesignColors;
using MaterialDesignThemes.Wpf;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Input;
namespace MahMaterialDragablzMashUp
{
public class PaletteSelectorViewModel
{
public PaletteSelectorViewModel()
{
Swatches = new SwatchesProvider().Swatches;
}
public ICommand ToggleStyleCommand { get; } = new AnotherCommandImplementation(o => ApplyStyle((bool)o));
public ICommand ToggleBaseCommand { get; } = new AnotherCommandImplementation(o => ApplyBase((bool)o));
public IEnumerable<Swatch> Swatches { get; }
public ICommand ApplyPrimaryCommand { get; } = new AnotherCommandImplementation(o => ApplyPrimary((Swatch)o));
public ICommand ApplyAccentCommand { get; } = new AnotherCommandImplementation(o => ApplyAccent((Swatch)o));
private static void ApplyStyle(bool alternate)
{
var resourceDictionary = new ResourceDictionary
{
Source = new Uri(@"pack://application:,,,/Dragablz;component/Themes/materialdesign.xaml")
};
var styleKey = alternate ? "MaterialDesignAlternateTabablzControlStyle" : "MaterialDesignTabablzControlStyle";
var style = (Style) resourceDictionary[styleKey];
foreach (var tabablzControl in Dragablz.TabablzControl.GetLoadedInstances())
{
tabablzControl.Style = style;
}
}
private static void ApplyBase(bool isDark)
{
new PaletteHelper().SetLightDark(isDark);
}
private static void ApplyPrimary(Swatch swatch)
{
new PaletteHelper().ReplacePrimaryColor(swatch);
}
private static void ApplyAccent(Swatch swatch)
{
new PaletteHelper().ReplaceAccentColor(swatch);
}
}
}
|