示例#1
0
 protected virtual void ChildWindowEvent(ChildWindowCommandType type)
 {
     if (ChildWindowHandelEvnet != null)
     {
         ChildWindowHandelEvnet(this, type);
     }
 }
示例#2
0
 void _childWindow_ChildWindowHandleEvent(object sender, ChildWindowCommandType type)
 {
     ChildWindowEvent(type);
 }
示例#3
0
 protected virtual void MessageWindowEvent(ChildWindowCommandType type)
 {
 }
示例#4
0
 void _messageWindow_ChildWindowHandleEvent(object sender, ChildWindowCommandType type)
 {
     _messageWindow.ShowChildWindow = false;
     MessageWindowEvent(type);
 }