//Устанавливает свойства главного окна
        public void LoadLogin()
        {
            mainWindow.WindowState = WindowState.Normal;
            this.mainWindow.WindowStartupLocation = WindowStartupLocation.CenterScreen;
            this.mainWindow.Show();

            this.SetElement(mainWindow, (UIElement)viewCreator.CreateLoginPageView());
        }