//Edycja uzytkownika/karty public OknoDodawania(OknoAdmina _OA, string _UID, string Imie, string Nazwisko) { InitializeComponent(); akcja = "k"; AddButton.Text = "Edytuj"; LabelID.Text = "UID"; UID = _UID; UIDtextBox.Text = UID; ImieTextBox.Text = Imie; NazwiskoTextBox.Text = Nazwisko; EditCheckBox.Checked = true; EditCheckBox.Enabled = false; OA = _OA; //chowamy elementy przydatne przy dodawaniu studentow LabelHaslo.Hide(); LabelLogin.Hide(); LoginTextBox.Hide(); HasloTextBox.Hide(); repeatHasloTextBox.Hide(); }
//Dodawanie uzytkownika/karty public OknoDodawania(OknoAdmina _OA, string _akcja) { InitializeComponent(); akcja = _akcja; OA = _OA; AddButton.Text = "Dodaj"; if (akcja == "k")//chowamy elementy przydatne przy dodawaniu wykladowcow { LabelID.Text = "UID"; LabelHaslo.Hide(); LabelLogin.Hide(); LoginTextBox.Hide(); HasloTextBox.Hide(); repeatHasloTextBox.Hide(); } else if (akcja == "w") { UIDtextBox.Enabled = false; LabelID.Text = "ID"; } }
private void AddEditForm_Load(object sender, EventArgs e) { if (mode == Mode.Add) { HeaderLabel.Text = "ADD ENTRY"; AddButton.Text = "Add"; } else { HeaderLabel.Text = "EDIT ENTRY"; AddButton.Text = "Edit"; if (MainForm.isSNShow || MainForm.isEmailShow || MainForm.isOtherShow) { NameTextBox.Text = addEntry.Name; LoginTextBox.Text = addEntry.Login; PasswordTextBox.Text = addEntry.Password; RepeatPasswordTextBox.Text = addEntry.Password; PhoneTextBox.Text = addEntry.Phone; UrlTextBox.Text = addEntry.URL; NotesTextBox.Text = addEntry.Notes; } if (MainForm.isHomebankingShow) { NameTextBox.Text = addHomebankingEntry.Name; CardNumberTextBox.Text = addHomebankingEntry.CardNumber; DateTextBox.Text = addHomebankingEntry.Date; CvcTextBox.Text = addHomebankingEntry.CVC; PhoneTextBox.Text = addHomebankingEntry.Phone; NotesTextBox.Text = addHomebankingEntry.Notes; } if (MainForm.isLicensesShow) { NameTextBox.Text = addLicenseEntry.Name; KeyTextBox.Text = addLicenseEntry.Key; NotesTextBox.Text = addLicenseEntry.Notes; } } if (MainForm.isSNShow || MainForm.isEmailShow || MainForm.isOtherShow) { Size = new Size(315, 500); CloseButton.Location = new Point(271, 15); CardNumberTextBox.Hide(); CvcTextBox.Hide(); DateTextBox.Hide(); LoginTextBox.Show(); PasswordTextBox.Show(); RepeatPasswordTextBox.Show(); KeyTextBox.Hide(); PhoneTextBox.Location = new Point(39, 267); NotesTextBox.Location = new Point(39, 367); AddButton.Location = new Point(254, 449); CancelButton.Location = new Point(173, 449); NameTextBox.TabIndex = 0; LoginTextBox.TabIndex = 1; PasswordTextBox.TabIndex = 2; RepeatPasswordTextBox.TabIndex = 3; PhoneTextBox.TabIndex = 4; UrlTextBox.TabIndex = 5; NotesTextBox.TabIndex = 6; CardNumberTextBox.TabIndex = 7; CvcTextBox.TabIndex = 8; DateTextBox.TabIndex = 9; KeyTextBox.TabIndex = 10; } else if (MainForm.isHomebankingShow) { Size = new Size(535, 311); CloseButton.Location = new Point(491, 12); LoginTextBox.Hide(); PasswordTextBox.Hide(); RepeatPasswordTextBox.Hide(); CardNumberTextBox.Show(); CvcTextBox.Show(); DateTextBox.Show(); KeyTextBox.Hide(); PhoneTextBox.Location = new Point(287, 167); NotesTextBox.Location = new Point(39, 217); AddButton.Location = new Point(475, 260); CancelButton.Location = new Point(394, 260); NameTextBox.TabIndex = 0; LoginTextBox.TabIndex = 6; PasswordTextBox.TabIndex = 7; RepeatPasswordTextBox.TabIndex = 8; PhoneTextBox.TabIndex = 4; UrlTextBox.TabIndex = 9; NotesTextBox.TabIndex = 5; CardNumberTextBox.TabIndex = 1; CvcTextBox.TabIndex = 2; DateTextBox.TabIndex = 3; KeyTextBox.TabIndex = 10; SetLanguage(); } else { Size = new Size(537, 255); CloseButton.Location = new Point(492, 12); LoginTextBox.Hide(); PasswordTextBox.Hide(); RepeatPasswordTextBox.Hide(); CardNumberTextBox.Hide(); CvcTextBox.Hide(); DateTextBox.Hide(); KeyTextBox.Show(); PhoneTextBox.Hide(); NotesTextBox.Location = new Point(39, 167); AddButton.Location = new Point(476, 204); CancelButton.Location = new Point(395, 204); NameTextBox.TabIndex = 0; LoginTextBox.TabIndex = 3; PasswordTextBox.TabIndex = 4; RepeatPasswordTextBox.TabIndex = 5; PhoneTextBox.TabIndex = 6; UrlTextBox.TabIndex = 7; NotesTextBox.TabIndex = 2; CardNumberTextBox.TabIndex = 8; CvcTextBox.TabIndex = 9; DateTextBox.TabIndex = 10; KeyTextBox.TabIndex = 1; } SetLanguage(); }