GoldbergGUI/GoldbergGUI.WPF/Views/MainView.xaml.cs
Jeddunk 386daa126b About content updated.
Minor change to search function.
2021-01-13 15:37:30 +01:00

17 lines
411 B
C#

using MvvmCross.Platforms.Wpf.Presenters.Attributes;
// ReSharper disable UnusedType.Global
namespace GoldbergGUI.WPF.Views
{
/// <summary>
/// Interaction logic for MainView.xaml
/// </summary>
[MvxContentPresentation(WindowIdentifier = nameof(MainWindow))]
public partial class MainView
{
public MainView()
{
InitializeComponent();
}
}
}