public virtual void Open(int v1, object v2)
 {
     if (Initialized)
     {
         view.Open(v1, v2);
     }
 }
 private void OpenPopPanel()
 {
     if (view != null)
     {
         view.Open("PopupPanel", new string[] { "测试", "看关闭之后,刚才那个面板能打开不!" });
     }
 }