public MainView()
 {
     InitializeComponent();
     this.model = new Model();
     this.controller = new Controller(this, this.model);
 }
 public Controller(MainView view, Model model)
 {
     this.view = view;
     this.model = model;
 }