コード例 #1
0
 protected Dialog(IDictionary <Type, Handler> handlers, DialogPositioning position, int depth = 0)
     : base(InjectDialogHandler(handlers))
 {
     Positioning = position;
     Depth       = depth;
 }
コード例 #2
0
ファイル: Dialog.cs プロジェクト: vsafonkin/ualbion
 protected Dialog(DialogPositioning position, int depth = 0)
 {
     On <CollectDialogsEvent>(e => e.AddDialog(this));
     Positioning = position;
     Depth       = depth;
 }
コード例 #3
0
ファイル: ModalDialog.cs プロジェクト: Metibor/ualbion
 protected ModalDialog(DialogPositioning position, int depth = 0) : base(position, depth)
     => _blocker = AttachChild(new UiBlocker());