Ejemplo n.º 1
0
 public static void Toogle(this IShow thisShow)
 {
     if (thisShow.Shown)
     {
         thisShow.Hide();
     }
     else
     {
         thisShow.Show();
     }
 }