예제 #1
0
        public bool RemoveGraphicsShow(string showKey)
        {
            IGraphicsShow gShow = GraphicsShowManager.GetShow(showKey);

            if (gShow != null)
            {
                GraphicsShowManager.RemoveShow(showKey);
                Logger.Info(true, String.Format("<{0}>显示视图关闭成功", gShow.ShowName));
                return(true);
            }
            else
            {
                return(false);
            }
        }