Esempio n. 1
0
 public BattleyeView(LoginWindow value, LoginWindowDataViewModel dataView, CreateProfileOverlayView masterWindow)
 {
     InitializeComponent();
     this.login = value;
     this.dataView = dataView;
     this.masterWindow = masterWindow;
     Logger.MonitoringLogger.Debug("BattleEye View Initialized");
 }
Esempio n. 2
0
 private void ModifyButton_Click(object sender, RoutedEventArgs e)
 {
     this.AppBarLogin.IsOpen = false;
     CreateProfileOverlayView window = new CreateProfileOverlayView(this, GetWindow(this), loginDataView, profileSelected);
     this.TaskbarProgressState = System.Windows.Shell.TaskbarItemProgressState.Paused;
     this.TaskbarProgressValue = 50;
     //this.TaskbarIsBusy = true;
     window.Show();
 }
Esempio n. 3
0
 public void NewConnexionClick(object sender, RoutedEventArgs e)
 {
     this.AppBarLogin.IsOpen = false;
     CreateProfileOverlayView window = new CreateProfileOverlayView(this, GetWindow(this), loginDataView);
     this.TaskbarProgressState = System.Windows.Shell.TaskbarItemProgressState.Paused;
     this.TaskbarProgressValue = 50;
     //this.TaskbarIsBusy = true;
     window.Show();
 }