Beispiel #1
0
 protected virtual void OnMsgClose(MsgClose msg)
 {
     // Close the window only if the message comes from the DataContext of this window
     if (msg.SenderViewModel == this.DataContext)
     {
         this.Close();
     }
 }
Beispiel #2
0
 void MsgClose_Handler(MsgClose msg)
 {
     this.OnMsgClose(msg);
 }