2021-01-08 18:36:57 +01:00
|
|
|
|
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
|
|
|
|
|
|
2021-01-13 15:37:30 +01:00
|
|
|
|
// ReSharper disable UnusedType.Global
|
2021-01-08 18:36:57 +01:00
|
|
|
|
namespace GoldbergGUI.WPF.Views
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaction logic for MainView.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
[MvxContentPresentation(WindowIdentifier = nameof(MainWindow))]
|
2021-01-13 15:37:30 +01:00
|
|
|
|
public partial class MainView
|
2021-01-08 18:36:57 +01:00
|
|
|
|
{
|
|
|
|
|
public MainView()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|