Skip to content

Commit 67a6121

Browse files
committed
empty classes. nothing to see here
1 parent f5890e2 commit 67a6121

File tree

4 files changed

+59
-0
lines changed

4 files changed

+59
-0
lines changed

MaterialDesignColors.WpfExample/MaterialDesignColors.WpfExample.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@
7979
<DependentUpon>ListsWindow.xaml</DependentUpon>
8080
</Compile>
8181
<Compile Include="NotEmptyValidationRule.cs" />
82+
<Compile Include="PaletteSelectorViewModel.cs" />
83+
<Compile Include="PaletteSelectorWindow.xaml.cs">
84+
<DependentUpon>PaletteSelectorWindow.xaml</DependentUpon>
85+
</Compile>
8286
<Compile Include="ProvingGround.xaml.cs">
8387
<DependentUpon>ProvingGround.xaml</DependentUpon>
8488
</Compile>
@@ -113,6 +117,10 @@
113117
<SubType>Designer</SubType>
114118
<Generator>MSBuild:Compile</Generator>
115119
</Page>
120+
<Page Include="PaletteSelectorWindow.xaml">
121+
<SubType>Designer</SubType>
122+
<Generator>MSBuild:Compile</Generator>
123+
</Page>
116124
<Page Include="ProvingGround.xaml">
117125
<SubType>Designer</SubType>
118126
<Generator>MSBuild:Compile</Generator>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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+
}

0 commit comments

Comments
 (0)