How to Get Arc Gis Pro Icons and Images And How to Use Them

1577
2
Jump to solution
03-20-2023 12:57 AM
tarekgalal
New Contributor

I need to use Arc Gis Pro Images and Icons but I don't know where or how to get them 

Examples of these Icons : 

tarekgalal_2-1679298846082.png

 

tarekgalal_3-1679298858040.png

 

tarekgalal_4-1679298870697.png

 

0 Kudos
1 Solution

Accepted Solutions
Wolf
by Esri Regular Contributor
Esri Regular Contributor

Build and run this sample:  arcgis-pro-sdk-community-samples/Framework at master · Esri/arcgis-pro-sdk-community-samples (github...

Scroll down on the link above to get instructions on how to run the sample.  This will give you the most complete list of Pro Images.  

Starting with 3.1 the syntax on how to use Pro Internal Images changed a bit (internally all images were converted into vector graphics), and you can find instructions on how to reference Pro internal images here:

ProGuide Content and Image Resources · Esri/arcgis-pro-sdk Wiki (github.com)

 

View solution in original post

2 Replies
GKmieliauskas
Esri Regular Contributor

Hi,

You can find ArcGIS Pro icon images and names here:

https://github.com/Esri/arcgis-pro-sdk/wiki/DAML-ID-Reference-Icons 

In daml file it could look like that:

      <button id="your_button_Id" caption="your_button_name" className="your_button_class" loadOnClick="false" smallImage="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/DataReviewerImportRules16.png" largeImage="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/DataReviewerImportRules32.png" condition="esri_mapping_mapPane">
          <tooltip heading=""><disabledText /></tooltip>
        </button>
  

In xaml it could look like that:

<Image Source="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/MoveFromFolder16.png" Stretch="None" />
0 Kudos
Wolf
by Esri Regular Contributor
Esri Regular Contributor

Build and run this sample:  arcgis-pro-sdk-community-samples/Framework at master · Esri/arcgis-pro-sdk-community-samples (github...

Scroll down on the link above to get instructions on how to run the sample.  This will give you the most complete list of Pro Images.  

Starting with 3.1 the syntax on how to use Pro Internal Images changed a bit (internally all images were converted into vector graphics), and you can find instructions on how to reference Pro internal images here:

ProGuide Content and Image Resources · Esri/arcgis-pro-sdk Wiki (github.com)