diff --git a/VECTO3GUI2020/Views/OutputView.xaml.cs b/VECTO3GUI2020/Views/OutputView.xaml.cs index fe199ee97029ae0bdc160128c6d6a59fe3e1de15..77ee15931255f658e4cea2b3b28e89def7a657e9 100644 --- a/VECTO3GUI2020/Views/OutputView.xaml.cs +++ b/VECTO3GUI2020/Views/OutputView.xaml.cs @@ -1,9 +1,15 @@ -namespace VECTO3GUI2020.Views +using System.Windows.Controls; + +namespace VECTO3GUI2020.Views { /// <summary> /// Interaction logic for OutputView.xaml /// </summary> - public partial class OutputView + public partial class OutputView : UserControl { - } + public OutputView() + { + InitializeComponent(); + } + } }