ArcGIS Pro 设置状态
/* Copyright 2019 Esri Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Input; using ArcGIS.Desktop.Framework; using ArcGIS.Desktop.Framework.Contracts; using System.Threading.Tasks; using System.Windows; using ArcGIS.Core.CIM; using ArcGIS.Desktop.Mapping; using ArcGIS.Desktop.Mapping.Events; namespace ConstructMarkerFromFont { /// <summary> /// This sample demonstrate how to create a CIMMarker from a font file and use it to render a point feature layer. /// The marker is then added to a personal style item in the current project. /// </summary> /// <remarks> /// 1. In Visual Studio click the Build menu. Then select Build Solution. /// 1. This solution is using the **Extended.Wpf.Toolkit Nuget**. If needed, you can install the Nuget from the "Nuget Package Manager Console" by using this script: "Install-Package Extended.Wpf.Toolkit". /// 1. Click Start button to open ArcGIS Pro. /// 1. ArcGIS Pro will open. /// 1. Open any project file that contains a point feature layer. /// 1. Right click on the point feature layer to bring up the context menu. /// 1. Select the "Construct Marker from Fonts" menu item. /// 1. This will open the "Construct Marker from Fonts" dockpane. /// 1. Select a font, style and size and click Apply to render the point feature layer with the selected character. /// 1. If you check the "Add selected marker to a personal FontMarker style" option, the selected marker will be added to a FontMarker style in the project. ///  /// </remarks> internal class Module1 : Module { private static Module1 _this = null; private const string StateId = "construct_marker_singlePointFeatureLayerSelectedState"; /// <summary> /// Retrieve the singleton instance to this module here /// </summary> public static Module1 Current { get { return _this ?? (_this = (Module1)FrameworkApplication.FindModule("ConstructMarkerFromFont_Module")); } } /// <summary> /// Called by Framework whenever this Module is loaded. /// </summary> /// <returns></returns> protected override bool Initialize() { //Subscribe to the TOC selection changed event to find out if a Point feature layer is selected. //This will activate the context menu item to open the "Construct Marker from Fonts" dockpane. TOCSelectionChangedEvent.Subscribe((args) => { if (args.MapView == null) return; Construct_MarkerViewModel vm = FrameworkApplication.DockPaneManager.Find("ConstructMarkerFromFont_Construct_Marker") as Construct_MarkerViewModel; if (GetSelectedPointLayers(args.MapView).Count() == 1) { //activate state FrameworkApplication.State.Activate(StateId); //Activates the custom state when the context is set. if (vm != null) { vm.DockpaneVisible = Visibility.Visible; vm.GetSelectedPointFeatureLayer(); } } else { FrameworkApplication.State.Deactivate(StateId); if (vm != null) vm.DockpaneVisible = Visibility.Collapsed; } }); return base.Initialize(); } private IEnumerable<FeatureLayer> GetSelectedPointLayers(MapView mapview) { var layers = mapview.GetSelectedLayers() .OfType<FeatureLayer>() .Where(fl => fl.ShapeType == esriGeometryType.esriGeometryPoint); return layers; } #region Overrides /// <summary> /// Called by Framework when ArcGIS Pro is closing /// </summary> /// <returns>False to prevent Pro from closing, otherwise True</returns> protected override bool CanUnload() { //TODO - add your business logic //return false to ~cancel~ Application close return true; } #endregion Overrides } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
2019-09-19 ArcGIS数据建模 (模型构建器modelbuilder) 培训视频 5章28小节587分钟视频 51GIS网站上线
2015-09-19 C# 获得图片的分辨率和大小