Add project files.
This commit is contained in:
17
Examples/Nodify.StateMachine/Themes/Brushes.xaml
Normal file
17
Examples/Nodify.StateMachine/Themes/Brushes.xaml
Normal file
@@ -0,0 +1,17 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:o="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options">
|
||||
|
||||
<SolidColorBrush x:Key="PanelBackgroundBrush"
|
||||
o:Freeze="True"
|
||||
Color="{DynamicResource PanelBackgroundColor}" />
|
||||
|
||||
<SolidColorBrush x:Key="ActiveStateBrush"
|
||||
o:Freeze="True"
|
||||
Color="{DynamicResource ActiveStateColor}" />
|
||||
|
||||
<SolidColorBrush x:Key="ReadOnlyStateBrush"
|
||||
o:Freeze="True"
|
||||
Color="{DynamicResource ReadOnlyStateColor}" />
|
||||
|
||||
</ResourceDictionary>
|
||||
13
Examples/Nodify.StateMachine/Themes/Dark.xaml
Normal file
13
Examples/Nodify.StateMachine/Themes/Dark.xaml
Normal file
@@ -0,0 +1,13 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#2D2D30</Color>
|
||||
|
||||
<Color x:Key="ActiveStateColor">#8DD28A</Color>
|
||||
<Color x:Key="ReadOnlyStateColor">#E6AF86</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
13
Examples/Nodify.StateMachine/Themes/Light.xaml
Normal file
13
Examples/Nodify.StateMachine/Themes/Light.xaml
Normal file
@@ -0,0 +1,13 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#E9EEFE</Color>
|
||||
|
||||
<Color x:Key="ActiveStateColor">#8DD28A</Color>
|
||||
<Color x:Key="ReadOnlyStateColor">#E6AF86</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
13
Examples/Nodify.StateMachine/Themes/Nodify.xaml
Normal file
13
Examples/Nodify.StateMachine/Themes/Nodify.xaml
Normal file
@@ -0,0 +1,13 @@
|
||||
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="Brushes.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
|
||||
<Color x:Key="PanelBackgroundColor">#2A1B47</Color>
|
||||
|
||||
<Color x:Key="ActiveStateColor">#A6D99C</Color>
|
||||
<Color x:Key="ReadOnlyStateColor">#FD5618</Color>
|
||||
|
||||
</ResourceDictionary>
|
||||
Reference in New Issue
Block a user