Ocultar un botón

Iniciado por rubcr, 25 Noviembre 2020, 21:09 PM

0 Miembros y 1 Visitante están viendo este tema.

rubcr

Hola a todos, me ha surgido una dudilla con un programa en Visual Studio en lenguaje C#
Como podría ocultar un botón durante 10 segundos y pasado ese tiempo aparezca?

Espero que alguien pueda ayudarme.
Un saludo.

ThunderCls

#1
Código (csharp) [Seleccionar]

// ...
button1.Visible = false;

Timer timer = new Timer();
timer.Interval = 10000;
timer.Tick += (sender, e) => {
   button1.Visible = true;
   timer.Stop();
}
timer.Start();
// ...


EDIT: Este hilo deberia ir en .NET  :¬¬
-[ "...I can only show you the door. You're the one that has to walk through it." – Morpheus (The Matrix) ]-
http://reversec0de.wordpress.com
https://github.com/ThunderCls/