17 lines
368 B
C#
17 lines
368 B
C#
|
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>>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|