|
POST
|
@KarenMeinstein In Visual Studio, what is the value for the "Specific Version" property for these assemblies you have referenced? If you have selected "Yes" then you will receive an error when that specific version is not found.
... View more
07-02-2024
08:59 AM
|
0
|
1
|
3599
|
|
POST
|
We are not able to reproduce this issue using the Log4Net NuGet. Are you using different versions of the NuGet or are you referencing the Log4Net assemblies directly?
... View more
07-01-2024
11:44 AM
|
0
|
3
|
3612
|
|
POST
|
@SteveCole Try using Menus. I was able to see the separators. <menus>
<menu id="damlSeparators_ButtonPalette1" caption="Palette Button 1" >
<button refID="esri_editing_EditVerticesMove"/>
<button refID="esri_editing_EditVerticesRotate"/>
<button refID="esri_editing_EditVerticesScale"/>
<button refID="esri_editing_EditVerticesModifyFeature" separator="true"/>
<button refID="esri_editing_ReplaceGeometry"/>
<button refID="esri_editing_ExtendTrimFeatures"/>
<button refID="esri_editing_LineIntersection"/>
<button refID="esri_editing_SplitCommand" separator="true"/>
<button refID="esri_editing_ClipCommand"/>
<button refID="esri_editing_ExplodeFeatures"/>
<button refID="esri_editing_MergeFeatures" separator="true"/>
<button refID="esri_editing_BufferFeatures"/>
<button refID="esri_editing_CopyParallel"/>
</menu>
</menus>
... View more
06-27-2024
04:19 PM
|
1
|
1
|
1477
|
|
POST
|
@jefferson_bzp You found it! That is the exact reason your MapControl is not seen on a MapViewOverlayControl or on a Embeddable control. Hosting the MapControl in an MapViewOverlayControl or an Embedded control is not supported.
... View more
06-27-2024
01:36 PM
|
0
|
1
|
2845
|
|
POST
|
Thank you @jefferson_bzp This sample helps me see the issue. Will post back with what I find.
... View more
06-27-2024
10:52 AM
|
1
|
0
|
2855
|
|
POST
|
@jefferson_bzp I am not able to repro this. I was able to host my MapControl inside a generic WPF UserControl. The active mapView rendered in this map control. You can add a small addin with your workflow that illustrates the issue if you want.
... View more
06-26-2024
12:16 PM
|
0
|
2
|
2909
|
|
POST
|
@Gurunara A direct query to the data/layer made in the SDK should always hit the database.
... View more
06-25-2024
02:08 PM
|
0
|
1
|
1338
|
|
POST
|
You can use states and conditions. Pro has an internal state defined by this id: esri_core_isSignedIn You can create your own custom condition using this state. New conditions are defined in daml. Then add this condition to your controls. In DAML, create this condition: ...
<conditions>
<insertCondition id="my_condition_Online">
<and>
<state id="esri_core_isSignedIn" />
</and>
</insertCondition>
</conditions>
</ArcGIS> Then, add this condition to your control. Like this in config.daml <tab id="EsriCommunity_Tab1" caption="New Tab" condition="my_condition_Online">
... View more
06-25-2024
12:54 PM
|
1
|
1
|
1557
|
|
POST
|
There are few ways you can accomplish this. One way is to - use Microsoft's Dispatcher class CheckAccess/BeginInvoke pattern to update UI controls, from within a QueuedTask background thread. This pattern is documented quite a bit on Microsoft's site. The Pro SDK team also presented this pattern relating to Pro AddIn development in this Esri Dev Summit 2024 session. This concept is talked about at around 34 minutes in. ArcGIS Pro SDK for .NET: Asynchronous Programming for Addins 2
... View more
06-25-2024
10:24 AM
|
0
|
0
|
981
|
|
POST
|
@jefferson_bzp EmbeddableControl is the exact way to go. Here are some samples/wikis to help: ProGuide: Embeddable Control MapToolWithEmbeddableControl Dynamic Menu BasicMapTool
... View more
06-21-2024
11:20 AM
|
1
|
0
|
1859
|
|
POST
|
The Set Data Source button on the Layer PropertySheet page can’t be used to browse to your custom bsc file (plugin data). Instead, you will have to make a custom property page that you can insert into Pro’s Layer Property Sheet. (The daml id for this is esri_mapping_featureLayerPropertySheet) <propertySheets>
<updateSheet refID="esri_mapping_featureLayerPropertySheet">
<insertPage id="DAML_LayersPropertySheet_LayersPropertySheet" caption="My custom layer properties" className="DAML.LayersPropertySheet.LayersPropertySheetViewModel" placeWith="esri_mapping_layerSourcePropertyPage" insert="after" >
<content className="DAML.LayersPropertySheet.LayersPropertySheetView" />
</insertPage>
</updateSheet> On this custom page, you can have a button that displays a OpenItemDialog. Set the filter in this dialog to open your bsc files. Then, you can fix the data source on your layer to the selected bsc file by accessing its data connection via the CIM.
... View more
06-20-2024
03:13 PM
|
0
|
0
|
999
|
|
POST
|
@MKa In your configuration, when\where are you running the above snippet to create an empty project? For example, in order to reproduce your crash, I added a "New Project" button to the startup page in the Configuration Project template. I couldn't repro the crash with this workflow I tried. It is important to add your code in the correct sequence of the configuration so that you can access the modules required for your custom code. The following two sections in the wiki explains the sequence of events that Configurations follow. 1. https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations#configuration-manager 2. https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations#configuration-callbacks Thanks Uma
... View more
06-20-2024
10:59 AM
|
0
|
0
|
944
|
|
POST
|
Hi, Try using the tool name mentioned in the Python tab on the tool documentation.
... View more
06-17-2024
09:27 AM
|
1
|
2
|
1440
|
|
POST
|
Hi @Gurunara MapView.ZoomTo method has many overloads. MapView.ZoomTo overloads For example, you can zoom to a geometry, an OID, Camera, etc.
... View more
06-14-2024
01:01 PM
|
0
|
0
|
749
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 01-21-2026 10:48 AM | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|