„StyleFunctions/Button_Text_Zoom.cs“ hinzufügen

This commit is contained in:
Marcus Ferl 2022-04-01 21:06:22 +02:00
parent fd7982c974
commit 73dae5cbc6

View File

@ -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;
}
}