GoldbergGUI/GoldbergGUI.WPF/Views/MainView.xaml.cs

17 lines
411 B
C#
Raw Normal View History

2021-01-08 12:36:57 -05:00
using MvvmCross.Platforms.Wpf.Presenters.Attributes;
// 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))]
public partial class MainView
2021-01-08 12:36:57 -05:00
{
public MainView()
{
InitializeComponent();
}
}
}