Ejemplo n.º 1
0
 protected Dialog(IDictionary <Type, Handler> handlers, DialogPositioning position, int depth = 0)
     : base(InjectDialogHandler(handlers))
 {
     Positioning = position;
     Depth       = depth;
 }
Ejemplo n.º 2
0
 protected Dialog(DialogPositioning position, int depth = 0)
 {
     On <CollectDialogsEvent>(e => e.AddDialog(this));
     Positioning = position;
     Depth       = depth;
 }
Ejemplo n.º 3
0
 protected ModalDialog(DialogPositioning position, int depth = 0) : base(position, depth)
     => _blocker = AttachChild(new UiBlocker());