From fffd87024a93fdf5becdc07741bee7e4c63605f0 Mon Sep 17 00:00:00 2001 From: Harald Martini <harald.martini@student.tugraz.at> Date: Wed, 4 May 2022 10:05:30 +0200 Subject: [PATCH] fixed missing output view --- VECTO3GUI2020/Resources/ViewModelBindings.xaml | 2 +- VECTO3GUI2020/Views/OutputView.xaml.cs | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/VECTO3GUI2020/Resources/ViewModelBindings.xaml b/VECTO3GUI2020/Resources/ViewModelBindings.xaml index 15d5dbac5c..9895655302 100644 --- a/VECTO3GUI2020/Resources/ViewModelBindings.xaml +++ b/VECTO3GUI2020/Resources/ViewModelBindings.xaml @@ -18,7 +18,7 @@ <DataTemplate x:Shared="False" DataType="{x:Type impl:JobListViewModel}"> <views:JobListView /> </DataTemplate> - <DataTemplate x:Shared="False" DataType="{x:Type viewModel:OutputViewModel}"> + <DataTemplate x:Shared="False" DataType="{x:Type impl:OutputViewModel}"> <views:OutputView /> </DataTemplate> diff --git a/VECTO3GUI2020/Views/OutputView.xaml.cs b/VECTO3GUI2020/Views/OutputView.xaml.cs index fe199ee970..bb229b9daf 100644 --- a/VECTO3GUI2020/Views/OutputView.xaml.cs +++ b/VECTO3GUI2020/Views/OutputView.xaml.cs @@ -5,5 +5,9 @@ /// </summary> public partial class OutputView { - } + public OutputView() + { + InitializeComponent(); + } + } } -- GitLab