<?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: How to populate Textboxes with values from settings file in backstage tab  in ArcGIS Pro SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854384#M4418</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;Could you please make a copy from xaml of texbox control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If debugger never goes inside InitializeAsync then problem is with DataContext of your page. It does not found your view model.&lt;/P&gt;&lt;P&gt;Check xaml header:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt;d&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt;DataContext&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-family: Consolas; font-size: small;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;=YourPageViewModel}"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Nov 2019 09:05:47 GMT</pubDate>
    <dc:creator>GKmieliauskas</dc:creator>
    <dc:date>2019-11-07T09:05:47Z</dc:date>
    <item>
      <title>How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854379#M4413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to provide my users with the possibility to adjust values that I by default set in a settings file of my addin through a backstage tab. I designed the UI in the tab to resample the tab design of ArcGIS Pro&amp;nbsp; (&lt;A _jive_internal="true" href="https://community.esri.com/thread/243046-how-to-achive-ui-as-shown-in-backstage-area-eg-open"&gt;link to my question about the UI&lt;/A&gt;) and have now a ArcGIS Pro Pane on the right hand where I put some textboxes.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/472512_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;When initializing the backstage tab the settings file should be read and the textboxes populated with the respective values.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Here I have my first question, since the ArcGIS Pro Pane comes with its own view model... do I have to put the code there or is it absolutely fine to put the code into the code behind file?&lt;BR /&gt;My other question is about how to get the retrieved values into the textboxes. Currently I have a public property in the view model and I can see the xaml file is aware of the property bound to it, but I have no clue about where to put the code to retrieve the value from the settings file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Nov 2019 09:33:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854379#M4413</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2019-11-06T09:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854380#M4414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;What do you mean "settings file"? ArcGIS Pro project settings or your own&amp;nbsp; custom settings file? If it is ArcGIS Pro project settings then you need to follow example on GitHub from ArcGIS Pro. Else you need to&amp;nbsp; and read settings file and set your setting parameters to corresponding page properties binded to xaml controls. All properties must be public.&lt;/P&gt;&lt;P&gt;All code stuff you need to put in to:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;protected&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;override&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; Task InitializeAsync()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 06:24:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854380#M4414</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2019-11-07T06:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854381#M4415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gintautas,&lt;/P&gt;&lt;P&gt;yes, I have my own custom settings file.&lt;BR /&gt;I think I am running loops here... The backstage tab has its view model and the respective xaml file is setting the data context to its own view model. The same applies to the pane.&lt;/P&gt;&lt;P&gt;Both view models are set as internal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What ever I do in the view model of the backstage tab has no effect on the text property. Makes sense so far, since the binding in the pane xaml file is looking into the panes view model... If I define the following in the panes view model then it doesn't have an effect either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;public&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;static&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;string&lt;/SPAN&gt; UrlDHM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;public&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;static&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;void&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;GetSettings&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        UrlDHM &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Appsettings&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Default&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;urlDHM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;protected&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;async&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;override&lt;/SPAN&gt; Task &lt;SPAN class="token function"&gt;InitializeAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="token function"&gt;GetSettings&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;await&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;base&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;InitializeAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:33:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854381#M4415</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-12-12T10:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854382#M4416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;It is not enough for your property declaring. You need to do like that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;private&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas; font-size: small;"&gt; _urlDHM;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;public&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;string&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; UrlDHM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;get&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; { &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;return&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; _urlDHM; }&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;set&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt;SetProperty(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: small; font-family: Consolas; "&gt;ref&lt;/SPAN&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt; _urlDHM, value, () =&amp;gt; UrlDHM);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: Consolas; "&gt;&amp;nbsp;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;You need to notify view that something was changed in the model.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 08:41:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854382#M4416</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2019-11-07T08:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854383#M4417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gintautas, that's how I normally define my properties and I tried that, but also this does not reflect on the textbox text property:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;private&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;string&lt;/SPAN&gt; _urlDHM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;public&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;string&lt;/SPAN&gt; UrlDHM
&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;get&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; _urlDHM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;set&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;SetProperty&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;ref&lt;/SPAN&gt; _urlDHM&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;value&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;&amp;gt;&lt;/SPAN&gt; UrlDHM&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;protected&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;async&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;override&lt;/SPAN&gt; Task &lt;SPAN class="token function"&gt;InitializeAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        UrlDHM &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; AppSettings&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Default&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;urlDHM&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;await&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;base&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;InitializeAsync&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact the breakpoint I set on line 9 is never fired.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:33:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854383#M4417</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2021-12-12T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854384#M4418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;Could you please make a copy from xaml of texbox control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If debugger never goes inside InitializeAsync then problem is with DataContext of your page. It does not found your view model.&lt;/P&gt;&lt;P&gt;Check xaml header:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt;d&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;:&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt;DataContext&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;="{&lt;/SPAN&gt;&lt;SPAN style="color: #a31515; font-family: Consolas; font-size: small;"&gt;Binding&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-family: Consolas; font-size: small;"&gt; Path&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-family: Consolas; font-size: small;"&gt;=YourPageViewModel}"&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 09:05:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854384#M4418</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2019-11-07T09:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854385#M4419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know it's more than a minimal example! Sorry for that!&lt;/P&gt;&lt;P&gt;You find the definition of the textbox in question in line 49 of the pane xaml.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;backstage tab xaml: &lt;A href="https://pastebin.com/gGdPwhrG"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;backstage tab code behind: &lt;A href="https://pastebin.com/jkqBRLSD"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;backstage tab view model: &lt;A href="https://pastebin.com/H96Km0xx"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pane xaml: &lt;A href="https://pastebin.com/zM86Awzx"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;pane code behind: &lt;A href="https://pastebin.com/NbDMQMEi"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;P&gt;pane view model: &lt;A href="https://pastebin.com/XcfAm0jA"&gt;Link&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 09:18:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854385#M4419</guid>
      <dc:creator>TomGeo</dc:creator>
      <dc:date>2019-11-07T09:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854386#M4420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;I have created new project and classes with&amp;nbsp; your names.&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;StepperBackstagePane&lt;/SPAN&gt; works fine for me from Add-in button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="data:image/png;base64,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" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected async override Task InitializeAsync()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UrlHeight = "xxx";&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; await base.InitializeAsync();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check config.daml file for pane className and content className attributes. They must match your classes. I have had similar problem when I tried to rename esri sample source code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;pane id="Stepper_MVVM_StepperBackstagePane" caption="StepperBackstagePane" &lt;STRONG&gt;className="StepperBackstagePaneViewModel"&lt;/STRONG&gt; smallImage="pack://application:,,,/ArcGIS.Desktop.Resources;component/Images/GenericButtonGreen16.png" defaultTab="esri_mapping_homeTab" defaultTool="esri_mapping_navigateTool"&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;&lt;STRONG&gt;content className="StepperBackstagePaneView&lt;/STRONG&gt;" /&amp;gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/pane&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know your application architecture so I have not checked other content (&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: Consolas,Menlo,Monaco,'Lucida Console','Liberation Mono','DejaVu Sans Mono','Bitstream Vera Sans Mono',monospace,serif; font-size: 12px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; -ms-user-select: text; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;FaksBackstageTabViewModel&lt;/SPAN&gt; and etc.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to go deep. From&amp;nbsp; backstage&amp;nbsp; Stepper button&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;StepperBackstagePane&lt;/SPAN&gt; does not work as you wrote. In way you create&amp;nbsp;&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #3d3d3d; font-family: Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;StepperBackstagePane&lt;/SPAN&gt; it does not get&amp;nbsp;InitializeAsync() event.&lt;/P&gt;&lt;P&gt;You need to create your own constructor or modify existing to read settings. Pane you created is not usable for your solution. It is designed as ArcGIS Pro Map pane or Attribute table table pane. It has own way of pane creating.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 14:23:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854386#M4420</guid>
      <dc:creator>GKmieliauskas</dc:creator>
      <dc:date>2019-11-07T14:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to populate Textboxes with values from settings file in backstage tab</title>
      <link>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854387#M4421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We provide ProGuide documentation that answers the original question:&amp;nbsp;&amp;nbsp;&lt;A href="https://github.com/Esri/arcgis-pro-sdk/wiki/ProGuide-Custom-settings"&gt;https://github.com/Esri/arcgis-pro-sdk/wiki/ProGuide-Custom-settings&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 17:24:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-sdk-questions/how-to-populate-textboxes-with-values-from/m-p/854387#M4421</guid>
      <dc:creator>Wolf</dc:creator>
      <dc:date>2019-11-07T17:24:57Z</dc:date>
    </item>
  </channel>
</rss>

