示例#1
0
        private void _CloseViewByVo(UiExcel uiDataCan)
        {
            if (uiDataCan == null)
            {
                ZLogger.Error("找不到界面信息,请检查UIExcel表是否配置正确!");
                return;
            }

            InterfaceView tempView = _TryToGetOpenViewAndType(uiDataCan);

            if (tempView != null)
            {
                tempView.Close(false);
            }
        }