コード例 #1
0
 private void PrepareDialogChild(IDialogChild view)
 {
     if (view == null)
     {
         return;
     }
     view.ParentDialog = this;
 }
コード例 #2
0
 private void ClearDialogChild(IDialogChild view)
 {
     if (view == null)
     {
         return;
     }
     view.ParentDialog = null;
 }