Reorged source tree.

This commit is contained in:
soukoku
2015-03-15 17:36:17 -04:00
parent 2ebe3ced0f
commit 54a913893a
137 changed files with 57 additions and 55 deletions

View File

@@ -0,0 +1,17 @@
using ModernWPF;
using System.Windows;
namespace Sample.WPF
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
ModernTheme.ApplyTheme(ModernTheme.Theme.Light, Accent.Green);
base.OnStartup(e);
}
}
}