示例#1
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            SkinResourceDictionary.ValidateSkins();

            // TODO load user preferences, set menu checkmark to match selected skin

            // without this, we would start with the last skin defined in the XAML
            ActiveSkin = DefaultSkinName;

            // now we can start the party
            MainWindow w = new MainWindow();

            w.Show();
        }
示例#2
0
 public App()
 {
     SkinResourceDictionary.ChangeSkin(Skin.Dark, ManiacEditor.App.Current.Resources.MergedDictionaries);
     this.InitializeComponent();
 }