Some DockPane's DAML attributes don't seem to work

187
0
03-04-2024 07:37 AM
ljlopez
New Contributor III

Hi,

I'm using the ArcGIS Pro 3.1 SDK for .NET to create add-ins. When defining a DockPane at the Config.daml file, the DAML attributes below are available but don't seem to change anything on the appearance of the DockPane, or the DockPane's title, tooltip or tab text.

  • extendedCaption
  • smallImage
  • image

Are the attributes above used? If not, is there any way to add a subtitle or an icon to the DockPane's title?

DAML code used below:

<dockPanes>
    <dockPane id="myDockPaneId" caption="DockPane's title" className="MyAddIn.ViewModels.MyDockPaneViewModel" dock="group" dockWith="esri_core_projectDockPane" extendedCaption="DockPane's subtitle" smallImage="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/CogWheel16.png" image="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/CogWheel32.png">
        <content className="MyAddIn.Views.MyDockPaneView" />
    </dockPane>
</dockPanes>

Thanks

0 Kudos
0 Replies