„StyleFunctions/Button_Text_Zoom.cs“ hinzufügen
This commit is contained in:
parent
fd7982c974
commit
73dae5cbc6
13
StyleFunctions/Button_Text_Zoom.cs
Normal file
13
StyleFunctions/Button_Text_Zoom.cs
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user