static class Globales {
// -----------------------------------
private static MainWindow mw = null; // Ventana principal
public static MainWindow MW{
get { return mw; }
set { mw = value; }
}
// -----------------------------------
private static Opciones op = null; // Ventana de opciones
public static Opciones OP{
get { return op; }
set { op = value; }
}
// y otros objetos que me interesa mantener como accesibles en cualquier lugar
}