Inheritance: MonoBehaviour
Beispiel #1
0
 private void TeacherForm_Load(object sender, EventArgs e)
 {
     PasswordPanel.Hide();
     ControlBox = false;
     TrueFalseAbsentComboBox.SelectedIndex = 1;
     AbsentHourComboBox.SelectedIndex      = 0;
 }
Beispiel #2
0
 private void showPassLink_Click(object sender, EventArgs e)
 {
     this.showPassLink.Enabled  = false;
     this.passowrdPanel         = new PasswordPanel(this.MainForm, this.dataGrid);
     this.passowrdPanel.Closed += PassowrdPanel_Closed;
     this.passowrdPanel.Swipe(true);
 }
 private void AddTeacherPasswordButton_Click(object sender, EventArgs e)
 {
     if (OldPassTextBox.Text.Length == 0 ||
         NewPassTextBox.Text.Length == 0 ||
         ConfirmedNewPassTextBox.Text.Length == 0)
     {
         Warning();
     }
     else
     {
         if (OldPassTextBox.Text == NewPassTextBox.Text)
         {
             MessageBox.Show("Unesite novu lozinku koja se razlikuje od stare !");
         }
         else if (Encrypt.hashPassword(OldPassTextBox.Text) == CurrentUser.Password && NewPassTextBox.Text == ConfirmedNewPassTextBox.Text)
         {
             bool isChanged = UsersRepository.ChangePassword(CurrentUser.Id, OldPassTextBox.Text, NewPassTextBox.Text, ConfirmedNewPassTextBox.Text);
             if (isChanged == true)
             {
                 PasswordPanel.Hide();
                 UserSettingsButton.Hide();
             }
         }
         else if (NewPassTextBox.Text != ConfirmedNewPassTextBox.Text)
         {
             MessageBox.Show("Nove lozinke se ne poklapaju !");
         }
         else
         {
             MessageBox.Show("Pogrešna lozinka !");
         }
     }
 }
Beispiel #4
0
 private void button1_Click(object sender, EventArgs e)
 {
     if (usernametxtbox.Text == "admin" && passwordtxtbox.Text == "admin")
     {
         PasswordPanel.Hide();
     }
 }
Beispiel #5
0
 void StartPasswordSheet()
 {
     PassInfo.StringValue = "Enter password for file:";
     PassPassword.BecomeFirstResponder();
     NSApplication.SharedApplication.BeginSheet(PasswordPanel, this.WindowForSheet, () =>
     {
         PasswordPanel.OrderOut(PasswordPanel);
     });
 }
 private void UserSettingsButton_Click(object sender, EventArgs e)
 {
     PasswordPanel.Show();
     AdminPanel.Hide();
     label2.Hide();
     ChoseComboBox.Hide();
     TeacherPanel.Hide();
     StudentAndParentPanel.Hide();
     DepartmentsPanel.Hide();
 }
Beispiel #7
0
 private void ControlTableButton_Click(object sender, EventArgs e)
 {
     StudentPanel.Show();
     label2.Show();
     UserBox.Show();
     TeachersPanel.Hide();
     AdministratorPanel.Hide();
     DepartmentPanel.Hide();
     PasswordPanel.Hide();
 }
 private void ControlTableButton_Click(object sender, EventArgs e)
 {
     ChoseComboBox.SelectedIndex = 0;
     AdminPanel.Show();
     label2.Show();
     ChoseComboBox.Show();
     TeacherPanel.Hide();
     StudentAndParentPanel.Hide();
     DepartmentsPanel.Hide();
     PasswordPanel.Hide();
 }
Beispiel #9
0
 private void UserSettingsButton_Click(object sender, EventArgs e)
 {
     UserBox.SelectedIndex = 2;
     PasswordPanel.Show();
     StudentPanel.Hide();
     TeachersPanel.Hide();
     AdministratorPanel.Hide();
     DepartmentPanel.Hide();
     label2.Hide();
     UserBox.Hide();
 }
Beispiel #10
0
        private void UserBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
                string current = selectedUser();
                if (current == "Administratora")
                {
                    AdministratorPanel.Show();
                    label2.Show();
                    UserBox.Show();
                    StudentPanel.Hide();
                    TeachersPanel.Hide();
                    PasswordPanel.Hide();
                    DepartmentPanel.Hide();
                }
                if (current == "Nastavnika")
                {
                    TeachersPanel.Show();
                    label2.Show();
                    UserBox.Show();
                    StudentPanel.Hide();
                    AdministratorPanel.Hide();
                    PasswordPanel.Hide();
                    DepartmentPanel.Hide();
                }
                if (current == "Ucenika i roditelja")
                {
                    StudentPanel.Show();
                    label2.Show();
                    UserBox.Show();
                    TeachersPanel.Hide();
                    AdministratorPanel.Hide();
                    PasswordPanel.Hide();
                    DepartmentPanel.Hide();
                }

                if (current == "Odjeljenja i razrednici")
                {
                    DepartmentPanel.Show();
                    label2.Show();
                    UserBox.Show();
                    StudentPanel.Hide();
                    TeachersPanel.Hide();
                    AdministratorPanel.Hide();
                    PasswordPanel.Hide();
                }
            }
            catch (Exception exception)
            {
                MessageBox.Show(exception.Message);
            }
        }
Beispiel #11
0
        void ReleaseDesignerOutlets()
        {
            if (edData != null)
            {
                edData.Dispose();
                edData = null;
            }

            if (FmlaButton != null)
            {
                FmlaButton.Dispose();
                FmlaButton = null;
            }

            if (LangButton != null)
            {
                LangButton.Dispose();
                LangButton = null;
            }

            if (PassInfo != null)
            {
                PassInfo.Dispose();
                PassInfo = null;
            }

            if (TextFinder != null)
            {
                TextFinder.Dispose();
                TextFinder = null;
            }

            if (PassPassword != null)
            {
                PassPassword.Dispose();
                PassPassword = null;
            }

            if (PasswordPanel != null)
            {
                PasswordPanel.Dispose();
                PasswordPanel = null;
            }

            if (SheetControl != null)
            {
                SheetControl.Dispose();
                SheetControl = null;
            }
        }
Beispiel #12
0
    private void ActivatePanel(string panelName)
    {
        if (string.IsNullOrEmpty(panelName))
        {
            return;
        }

        LoginPanel.SetActive(string.Equals(LoginPanel.name, panelName));
        PasswordPanel.SetActive(string.Equals(PasswordPanel.name, panelName));
        ForgotPassowrdPanel.SetActive(string.Equals(ForgotPassowrdPanel.name, panelName));
        WhoAreYouPanel.SetActive(string.Equals(WhoAreYouPanel.name, panelName));
        VerificationPanel.SetActive(string.Equals(VerificationPanel.name, panelName));
        SignUpPanel.SetActive(string.Equals(SignUpPanel.name, panelName));
        ChooseUserNamePanel.SetActive(string.Equals(ChooseUserNamePanel.name, panelName));
        GradePanel.SetActive(string.Equals(GradePanel.name, panelName));
        LoaderPanel.SetActive(string.Equals(LoaderPanel.name, panelName));
    }
Beispiel #13
0
 public void FillForm(AutomationPracticeFromModel user)
 {
     SignInButton.Click();
     WaitForLoad();
     EmailSectionOnCheateAccount.Click();
     FillEmail(user);
     WaitForLoad();
     CreateAccountButton.Click();
     WaitForLoad();
     LastNamePanel.SendKeys(user.LastNamePanel + Keys.Tab);
     FirstNamePanel.SendKeys(user.FirstNamePanel + Keys.Tab);
     PasswordPanel.SendKeys(user.PasswordPanel + Keys.Tab);
     AddressPanel.SendKeys(user.AddressPanel + Keys.Tab);
     CityPanel.SendKeys(user.CityPanel + Keys.Tab);
     IdStatePanel.SendKeys(user.IdStatePanel + Keys.Tab);
     PhoneMobile.SendKeys(user.PhoneMobile + Keys.Tab);
     PosteCodePanel.SendKeys(user.PosteCodePanel + Keys.Tab);
 }
Beispiel #14
0
 private void AddDirectorPasswordButton_Click(object sender, EventArgs e)
 {
     if (OldPassTextBox.Text.Length == 0 ||
         NewPassTextBox.Text.Length == 0 ||
         ConfirmedNewPassTextBox.Text.Length == 0)
     {
         warning();
     }
     else
     {
         if (OldPassTextBox.Text == NewPassTextBox.Text)
         {
             MessageBox.Show("Unesite novu lozinku koja se razlikuje od stare !");
         }
         else if (Encrypt.hashPassword(OldPassTextBox.Text) == CurrentUser.Password && NewPassTextBox.Text == ConfirmedNewPassTextBox.Text)
         {
             bool isChanged = UsersRepository.ChangePassword(CurrentUser.Id, OldPassTextBox.Text, NewPassTextBox.Text, ConfirmedNewPassTextBox.Text);
             if (isChanged == true)
             {
                 ChoseComboBox.SelectedIndex = 0;
                 AdminPanel.Show();
                 label2.Show();
                 ChoseComboBox.Show();
                 TeacherPanel.Hide();
                 StudentAndParentPanel.Hide();
                 DepartmentsPanel.Hide();
                 PasswordPanel.Hide();
                 UserSettingsButton.Hide();
             }
         }
         else if (NewPassTextBox.Text != ConfirmedNewPassTextBox.Text)
         {
             MessageBox.Show("Nove lozinke se ne poklapaju !");
         }
         else
         {
             MessageBox.Show("Pogrešna lozinka !");
         }
     }
 }
        private void TeacherForm_Load(object sender, EventArgs e)
        {
            CenterToParent();
            PasswordPanel.Hide();
            ControlBox = false;
            TrueFalseAbsentComboBox.SelectedIndex = 1;
            AbsentHourComboBox.SelectedIndex      = 0;
            MarkComboBox.SelectedIndex            = 0;
            ParentMeetingDateTimePicker.MinDate   = DateTime.Now;
            TimeComboBox.SelectedIndex            = 0;
            bool isStudentsAdded = PopulateStudentsComboBox();

            if (isStudentsAdded)
            {
                FillStudentInfoLabels();
                FillParentInfoLabels();
                FillStudentAbsents();
                bool isCoursesAdded = PopulateCoursesComboBox();
                if (isCoursesAdded)
                {
                    FillStudentMarks();
                }
            }
        }
        private void ChoseComboBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            try
            {
                string current = selectedUser();
                if (current == "Administracija")
                {
                    AdminPanel.Show();
                    label2.Show();
                    ChoseComboBox.Show();
                    TeacherPanel.Hide();
                    StudentAndParentPanel.Hide();
                    DepartmentsPanel.Hide();
                    PasswordPanel.Hide();
                }
                if (current == "Nastavnici")
                {
                    TeacherPanel.Show();
                    label2.Show();
                    ChoseComboBox.Show();
                    StudentAndParentPanel.Hide();
                    AdminPanel.Hide();
                    DepartmentsPanel.Hide();
                    PasswordPanel.Hide();
                }
                if (current == "Učenici i roditelji")
                {
                    StudentAndParentPanel.Show();
                    label2.Show();
                    ChoseComboBox.Show();
                    AdminPanel.Hide();
                    TeacherPanel.Hide();
                    DepartmentsPanel.Hide();
                    PasswordPanel.Hide();
                }

                if (current == "Odjeljenja")
                {
                    DepartmentsPanel.Show();
                    label2.Show();
                    ChoseComboBox.Show();
                    AdminPanel.Hide();
                    TeacherPanel.Hide();
                    StudentAndParentPanel.Hide();
                    PasswordPanel.Hide();
                }
                if (current == "Izvještaji")
                {
                    AdminPanel.Hide();
                    label2.Show();
                    ChoseComboBox.Show();
                    TeacherPanel.Hide();
                    StudentAndParentPanel.Hide();
                    DepartmentsPanel.Hide();
                    PasswordPanel.Hide();
                }
            }
            catch (Exception exception)
            {
                MessageBox.Show(exception.Message);
            }
        }
Beispiel #17
0
 private void UserSettingsButton_Click(object sender, EventArgs e)
 {
     PasswordPanel.Show();
 }
Beispiel #18
0
 private void ControlTableButton_Click(object sender, EventArgs e)
 {
     PasswordPanel.Hide();
 }