15 lines
300 B
C#
15 lines
300 B
C#
|
using MvvmCross.Platforms.Wpf.Views;
|
|||
|
|
|||
|
namespace GoldbergGUI.WPF
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interaction logic for MainWindow.xaml
|
|||
|
/// </summary>
|
|||
|
public partial class MainWindow : MvxWindow
|
|||
|
{
|
|||
|
public MainWindow()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|