using ESRI.ArcGIS.Controls; using KGIS.Framework.Commands; using KGIS.Framework.Maps; using KGIS.Framework.Platform; using KGIS.Framework.Utils; using KGIS.Framework.Utils.Helper; using Kingo.Plugin.YJJK.View; using Kingo.PluginServiceInterface; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Kingo.Plugin.YJJK.Commands { /// /// 一键建库 /// public class CmdYJJK2 : BaseMenuCommand { private EngineEditorClass pEditor = new EngineEditorClass(); private IHookHelper hookHelper = new HookHelperClass(); public override void OnClick() { try { if (pEditor == null) { pEditor = new EngineEditorClass(); } if (pEditor.EditState != esriEngineEditState.esriEngineStateNotEditing) { MessageHelper.ShowTips("请先关闭编辑!"); return; } List Dics = Platform.Instance.DicHelper.GetDic(DicTypeEnum.QSDM, true); if (Dics == null) { MessageHelper.ShowTips("请先设置权属字典!"); return; } UnifiedBuildDataBase main = new UnifiedBuildDataBase { WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen }; main.ShowInMainWindow(true); } catch (Exception ex) { LogAPI.Debug("一键建库 异常:" + ex); } } public override void OnCreate(object hook) { if (hookHelper == null) { hookHelper = new HookHelperClass(); } hookHelper.Hook = hook; pEditor = new EngineEditorClass(); } public override bool Enabled { get { return JudgeIsHaveTargetPath(); } } private bool JudgeIsHaveTargetPath() { try { if (!(MapsManager.Instance.MapService.GetProjectInfo() is ProjectInfo prj)) { return false; } return !string.IsNullOrWhiteSpace(prj.ZLDatabase) && pEditor.EditState == esriEngineEditState.esriEngineStateNotEditing; } catch (Exception ex) { LogAPI.Debug("判定 一键建库 按钮是否有效时失败,异常原因: " + ex + " ; "); return false; } } } }