Ejemplo n.º 1
0
 public FormNavegable(FormNavegable owner)
     : this()
 {
     this.owner = owner;
 }
Ejemplo n.º 2
0
 public FormNavegable(FormNavegable owner, AfterClose afterCloseAction)
     : this(owner)
 {
     this.afterCloseAction = afterCloseAction;
 }
Ejemplo n.º 3
0
 public FormNavegable()
 {
     this.owner            = null;
     this.afterCloseAction = DoNothing;
     this.FormClosing     += CloseNavegable;
 }