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