File tree Expand file tree Collapse file tree 4 files changed +59
-0
lines changed
MaterialDesignColors.WpfExample Expand file tree Collapse file tree 4 files changed +59
-0
lines changed Original file line number Diff line number Diff line change 79
79
<DependentUpon >ListsWindow.xaml</DependentUpon >
80
80
</Compile >
81
81
<Compile Include =" NotEmptyValidationRule.cs" />
82
+ <Compile Include =" PaletteSelectorViewModel.cs" />
83
+ <Compile Include =" PaletteSelectorWindow.xaml.cs" >
84
+ <DependentUpon >PaletteSelectorWindow.xaml</DependentUpon >
85
+ </Compile >
82
86
<Compile Include =" ProvingGround.xaml.cs" >
83
87
<DependentUpon >ProvingGround.xaml</DependentUpon >
84
88
</Compile >
113
117
<SubType >Designer</SubType >
114
118
<Generator >MSBuild:Compile</Generator >
115
119
</Page >
120
+ <Page Include =" PaletteSelectorWindow.xaml" >
121
+ <SubType >Designer</SubType >
122
+ <Generator >MSBuild:Compile</Generator >
123
+ </Page >
116
124
<Page Include =" ProvingGround.xaml" >
117
125
<SubType >Designer</SubType >
118
126
<Generator >MSBuild:Compile</Generator >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . Linq ;
4
+ using System . Text ;
5
+ using System . Threading . Tasks ;
6
+
7
+ namespace MaterialDesignColors . WpfExample
8
+ {
9
+ public class PaletteSelectorViewModel
10
+ {
11
+ }
12
+ }
Original file line number Diff line number Diff line change
1
+ <Window x : Class =" MaterialDesignColors.WpfExample.PaletteSelectorWindow"
2
+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3
+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
4
+ xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
5
+ xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
6
+ xmlns : local =" clr-namespace:MaterialDesignColors.WpfExample"
7
+ mc : Ignorable =" d"
8
+ Title =" PaletteSelectorWindow" Height =" 300" Width =" 300" >
9
+ <Grid >
10
+
11
+ </Grid >
12
+ </Window >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . Linq ;
4
+ using System . Text ;
5
+ using System . Threading . Tasks ;
6
+ using System . Windows ;
7
+ using System . Windows . Controls ;
8
+ using System . Windows . Data ;
9
+ using System . Windows . Documents ;
10
+ using System . Windows . Input ;
11
+ using System . Windows . Media ;
12
+ using System . Windows . Media . Imaging ;
13
+ using System . Windows . Shapes ;
14
+
15
+ namespace MaterialDesignColors . WpfExample
16
+ {
17
+ /// <summary>
18
+ /// Interaction logic for PaletteSelectorWindow.xaml
19
+ /// </summary>
20
+ public partial class PaletteSelectorWindow : Window
21
+ {
22
+ public PaletteSelectorWindow ( )
23
+ {
24
+ InitializeComponent ( ) ;
25
+ }
26
+ }
27
+ }
You can’t perform that action at this time.
0 commit comments