/// <summary> /// 打开飞窗 /// </summary> /// <param name="type">飞窗类型</param> /// <returns>飞窗</returns> public static FlyoutBase OpenFlyout(Type type) { #region # 验证 if (_Current == null) { throw new ApplicationException("元素管理器未初始化!"); } if (type == null) { return(null); } #endregion return(_Current.OpenFlyout(type)); }