Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Forked from VECTO / VECTO Sim
2871 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
MainWindow.xaml.cs 483 B
using System.Windows;
using VECTO3GUI2020.ViewModel.Interfaces;

namespace VECTO3GUI2020
{
    /// <summary>
    /// Interaktionslogik für MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        



        public MainWindow(IMainWindowViewModel viewModel)
        {
            InitializeComponent();
            DataContext = viewModel;
        }
    }
}