Guest User

Untitled

a guest
Nov 19th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. private void button3_Click(object sender, EventArgs e)
  2. {
  3. if (this.Font.Style != FontStyle.Bold)
  4. {
  5. this.Font = new Font(this.Font, FontStyle.Bold);
  6. }
  7. else if (this.Font.Style != FontStyle.Italic)
  8. {
  9. this.Font = new Font(this.Font, FontStyle.Italic);
  10. }
  11. else if (this.Font.Style != FontStyle.Underline)
  12. {
  13. this.Font = new Font(this.Font, FontStyle.Underline);
  14. }
  15. else
  16. {
  17. this.Font = new Font(this.Font, FontStyle.Regular);
  18. }
  19.  
  20. }
Add Comment
Please, Sign In to add comment