<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Change backstage button in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1613696#M12901</link>
    <description>&lt;P&gt;ArcGIS Pro Configuration extensibility pattern can be used to modify the QAT.&amp;nbsp; More info here:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations#oncreatequickaccesstoolbar" target="_self"&gt;Cofigurations: OnCreateQuickAccessToolbar&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 12 May 2025 16:14:14 GMT</pubDate>
    <dc:creator>UmaHarano</dc:creator>
    <dc:date>2025-05-12T16:14:14Z</dc:date>
    <item>
      <title>Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609451#M12857</link>
      <description>&lt;P&gt;Hi all, I'm working with ArcGIS Pro SDK Add-in. I want to change "Project" button caption, that open backstage, to something else in my language. I cannot find anything relate to that button in DAML ID Reference.&lt;/P&gt;&lt;P&gt;I also want to customize application's titlebar. How to do it?&lt;/P&gt;&lt;P&gt;Please help me. Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Apr 2025 03:46:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609451#M12857</guid>
      <dc:creator>MinhHoangf</dc:creator>
      <dc:date>2025-04-26T03:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609566#M12858</link>
      <description>&lt;P&gt;(Edit: Comment removed. Correct answer provided by Wolf and Uma)&lt;/P&gt;</description>
      <pubDate>Tue, 06 May 2025 20:32:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609566#M12858</guid>
      <dc:creator>David_Lindsey</dc:creator>
      <dc:date>2025-05-06T20:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609835#M12860</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/599330"&gt;@Min&lt;/a&gt;&amp;nbsp;The "Project" button is a special button and cannot be customized.&lt;/P&gt;&lt;P&gt;To change the application title, please use a "Managed Configuration".&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A title="ProConcepts: Configuration" href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations" target="_self"&gt;ProConcepts: Configuration&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Configuration" target="_self"&gt;Configuration Samples.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 22:06:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1609835#M12860</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2025-04-28T22:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1610953#M12878</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/37599"&gt;@MinhHoangf&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Indeed the "Project" button (as&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp; mentioned) is not a standard Framework Plugin (button) like the other tabs on the ArcGIS Pro ribbon.&amp;nbsp; But, since ArcGIS Pro is a WPF application, and you can 'spy' on the WPF visual tree (you can use Visual Studio to do so) to find which control implements the "Project" button.&amp;nbsp; &amp;nbsp;I found that the "Project" control's name is "appButton" and the type of the control is "ActiproSoftware.Windows.Controls.Bars.RibbonApplicationButton".&amp;nbsp; Once ArcGIS Pro is open you can use the code below to update the "Project" button to "New Caption".&amp;nbsp; Note: since we can't access any ActiProSoftware resources the code below is using reflection to make the .Content property update:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-05-01 113754.png" style="width: 402px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/131322i9C97FF555553AF39/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-05-01 113754.png" alt="Screenshot 2025-05-01 113754.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// change the caption of the 'Application' button in the main window: appButton
string newCaption = "New Caption";
var mainWindow = FrameworkApplication.Current.MainWindow;
if (mainWindow != null)
{
  var appButton = mainWindow.FindName("appButton");
  if (appButton != null &amp;amp;&amp;amp; appButton is FrameworkElement frameworkElement)
  {
    System.Diagnostics.Trace.WriteLine($@"{appButton.GetType()}");
    PropertyInfo propertyInfo = appButton.GetType().GetProperty("Content");
    propertyInfo.SetValue(appButton, Convert.ChangeType(newCaption, propertyInfo.PropertyType), null);
  }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In similar fashion you can update the Application's titlebar, but be aware that the titlebar is getting overwritten by project names.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 15:22:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1610953#M12878</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2025-05-02T15:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1611096#M12881</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp; &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;&amp;nbsp;Thanks for your help. This method is very flexible.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 13:58:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1611096#M12881</guid>
      <dc:creator>MinhHoangf</dc:creator>
      <dc:date>2025-05-02T13:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1613538#M12899</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/12882"&gt;@Wolf&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9021"&gt;@UmaHarano&lt;/a&gt;&amp;nbsp;How to change Ribbon/QAT context menu? What DAML ID of this menu?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="contextmenu.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/131947i370A8C04AACC3751/image-size/medium?v=v2&amp;amp;px=400" role="button" title="contextmenu.png" alt="contextmenu.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 03:19:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1613538#M12899</guid>
      <dc:creator>MinhHoangf</dc:creator>
      <dc:date>2025-05-12T03:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Change backstage button</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1613696#M12901</link>
      <description>&lt;P&gt;ArcGIS Pro Configuration extensibility pattern can be used to modify the QAT.&amp;nbsp; More info here:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-Configurations#oncreatequickaccesstoolbar" target="_self"&gt;Cofigurations: OnCreateQuickAccessToolbar&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 16:14:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/change-backstage-button/m-p/1613696#M12901</guid>
      <dc:creator>UmaHarano</dc:creator>
      <dc:date>2025-05-12T16:14:14Z</dc:date>
    </item>
  </channel>
</rss>

