diff --git a/StyleFunctions/Button_Text_Zoom.cs b/StyleFunctions/Button_Text_Zoom.cs new file mode 100644 index 0000000..3489888 --- /dev/null +++ b/StyleFunctions/Button_Text_Zoom.cs @@ -0,0 +1,13 @@ +class ButtonZoom + { + Button button1 = new Button(); + private void Button_MouseEnter(object sender, MouseEventArgs e) + { + button1.FontSize = 22; + } + + private void Button_MouseLeave(object sender, MouseEventArgs e) + { + button1.FontSize = 15; + } + } \ No newline at end of file