private void buttonOk_Click(object sender, EventArgs e)
 {
     //Check if textbox is not empty for it is the name of the list
     if(textBox.Text.Length > 0)
     {
         //Confirm the entered name is valid and the user confirmed
         valid = true;
         text = textBox.Text;
         this.Close();
     }
     else
     {
         FailedDialogView dlg = new FailedDialogView();
         dlg.getLabelFailed().Text = "Vul een naam in";
         dlg.ShowDialog();
     }
 }
Esempio n. 2
0
        public void ShowCodeResult(Model.Pincode instance, HttpStatusCode status)
        {
            if (status == HttpStatusCode.OK)
            {
                this.Code = instance;
            }
            else
            {
                this.CodeTextBox.Invoke((Action)(() =>
                {
                    LoginButton.Enabled = true;
                    CodeTextBox.Enabled = true;
                    PasswordTextBox.Enabled = true;

                    FailedDialogView failed = new FailedDialogView();
                    failed.getLabelFailed().Text = "De code is incorrect.";
                    BackgroundDialogView background = new BackgroundDialogView(this, failed);
                }));
            }
        }
Esempio n. 3
0
 public void ShowSaveFailed(Dictionary<string, int> data)
 {
     FailedDialogView failed = new FailedDialogView();
     failed.getLabelFailed().Text = "Kon een of meerdere e-mails niet versturen.";
     failed.ShowDialog();
 }
Esempio n. 4
0
 public void ShowNoAccountsFound()
 {
     FailedDialogView failed = new FailedDialogView();
     failed.getLabelFailed().Text = "Het Excel bestand is ongeldig, er zijn geen accounts gevonden.";
     failed.ShowDialog();
 }
Esempio n. 5
0
 public void ShowLoadFailed()
 {
     FailedDialogView failed = new FailedDialogView();
     failed.getLabelFailed().Text = "Het Excel bestand is ongeldig, er is geen sheet gevonden.";
     failed.ShowDialog();
 }
Esempio n. 6
0
 private void DeletedStatus()
 {
     count++;
     //Check if accounts, openquestions and useranswers have been removed
     if (count == 3)
     {
         if (removed)
         {
             //If everything is succesfully removed show succes
             SuccesDialogView view = new SuccesDialogView();
             view.Text = "Succes";
             view.getLabelSucces().Text = "Verwijderen gegevens voltooid! U kunt nu het programma afsluiten.";
             view.ShowDialog();
         }
         else
         {
             //If everything is succesfully removed show fail
             FailedDialogView view = new FailedDialogView();
             view.Text = "Foutmelding";
             view.getLabelFailed().Text = "Oeps! Er is iets misgegaan! Probeer het opnieuw!";
             view.ShowDialog();
         }
         count = 0;
         removed = true;
     }
 }
Esempio n. 7
0
        public void ShowPasswordResult(bool result)
        {
            if (!result)
            {
                this.CodeTextBox.Invoke((Action)(() =>
                {
                    LoginButton.Enabled = true;
                    CodeTextBox.Enabled = true;
                    PasswordTextBox.Enabled = true;

                    FailedDialogView failed = new FailedDialogView();
                    failed.getLabelFailed().Text = "Het wachtwoord is incorrect.";
                    BackgroundDialogView background = new BackgroundDialogView(this, failed);
                }));
            }
        }
 public void ShowSaveFailed()
 {
     FailedDialogView failed = new FailedDialogView();
     failed.getLabelFailed().Text = "Het opslaan is mislukt! Probeer het opnieuw.";
     failed.ShowDialog();
 }