GoldbergGUI/GoldbergGUI.WPF/App.xaml.cs

17 lines
368 B
C#
Raw Normal View History

2021-01-08 12:36:57 -05:00
using MvvmCross.Core;
using MvvmCross.Platforms.Wpf.Core;
using MvvmCross.Platforms.Wpf.Views;
namespace GoldbergGUI.WPF
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : MvxApplication
{
public App()
{
this.RegisterSetupType<MvxWpfSetup<Core.App>>();
}
}
}