示例#1
0
 public static void ShowWindow(Control control, PopupWindowBackgroundType backgroundType)
 {
     if (mWindow == null)
     {
         mWindow = new PopupWindow {
             content = control, BackgroundType = backgroundType
         };
         mWindow.Show();
     }
 }
示例#2
0
 public static void ShowWindow(Control control, PopupWindowBackgroundType backgroundType)
 {
     if (mWindow == null)
     {
         mWindow = new PopupWindow { content = control, BackgroundType = backgroundType };
         mWindow.Show();
     }
 }