I have a form with 4 buttons. I would like to make the following: All of the buttons should have the same preaction. If you press any of the buttons, you make the other ones dissapear, but not just button1.Visible = false . I would like them to fade away.
Is that possible? Could you help put? I found this out for forms, but can’t get my head around for buttons.
In windows forms you can fade forms changing opacity with thread sleep
but forms button doesn’t have that property. In addition Windows forms
is not very well designed for animations and stunning visuals so I guess
you will prefer WPF to perform that tasks
Check this:
Fade-in forms using .NET and C#