コード例 #1
0
 private void BeginClose()
 {
     State = DialogState.Closing;
     Closing();
     DialogManager.Remove(this);
 }
コード例 #2
0
 protected void Open <T>() where T : Dialog, new()
 {
     DialogManager.Open <T>();
 }
コード例 #3
0
 protected void Open <T>(T dialog) where T : Dialog
 {
     DialogManager.Open(dialog);
 }