private void ConfigureTextboxPlaceholders() { var t1 = new TextboxPlaceHolderConfigurator(txtNumber, "###"); t1.ConfigureTextBox(); var t2 = new TextboxPlaceHolderConfigurator(txtName, "Party Name"); t2.ConfigureTextBox(); }
private void ConfigureTextboxPlaceholders() { var t1 = new TextboxPlaceHolderConfigurator(txtLogin, "User login"); t1.ConfigureTextBox(); var t2 = new TextboxPlaceHolderConfigurator(txtPassword, "User password"); t2.ConfigureTextBox(); }
private void ConfigureTextboxPlaceholders() { var t1 = new TextboxPlaceHolderConfigurator(txtStudentClass, "Candidate's Class"); t1.ConfigureTextBox(); var t2 = new TextboxPlaceHolderConfigurator(txtName, "Candidate's name"); t2.ConfigureTextBox(); var t3 = new TextboxPlaceHolderConfigurator(txtStudentNumber, "Student Number"); t3.ConfigureTextBox(); }