Пример #1
0
 public FormNavegable(FormNavegable owner)
     : this()
 {
     this.owner = owner;
 }
Пример #2
0
 public FormNavegable(FormNavegable owner, AfterClose afterCloseAction)
     : this(owner)
 {
     this.afterCloseAction = afterCloseAction;
 }
Пример #3
0
 public FormNavegable()
 {
     this.owner            = null;
     this.afterCloseAction = DoNothing;
     this.FormClosing     += CloseNavegable;
 }