<?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 we can customize FeatureDataForm source code in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242780#M6297</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can't directly add an event handler to default template of a templated control.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To hook up to events of anything in the template you have either to create a template part or to create a command to bind to.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That being said, as Jennifer mentionned, you likely don't need to modify the code of the control. Styling the control should do the trick.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2012 05:39:21 GMT</pubDate>
    <dc:creator>DominiqueBroux</dc:creator>
    <dc:date>2012-05-31T05:39:21Z</dc:date>
    <item>
      <title>How we can customize FeatureDataForm source code</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242777#M6294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi All&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i have downloaded ESRI Silverlight toolkit source code from codeplex.com and i need to change/extend some functionality of FeatureDataForm such as "add cancel button beside Apply to close the window or header/footer etc . so how can i do this .i tried but could not change ... please help me , i stuck here ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Shar&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 May 2012 13:03:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242777#M6294</guid>
      <dc:creator>shariqueabdul</dc:creator>
      <dc:date>2012-05-30T13:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: How we can customize FeatureDataForm source code</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242778#M6295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are just adding a button, I think you can get by with just updating style: &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2010/05/28/localizing-arcgis-controls/"&gt;http://blogs.esri.com/esri/arcgis/2010/05/28/localizing-arcgis-controls/&lt;/A&gt;&lt;SPAN&gt; and implementing its click event. But if you feel you would need to modify code/behavior, in the Toolkit source code, look for "CommitButton" in FeatureDataForm.Theme.xaml, this is the "Apply" button.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 00:29:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242778#M6295</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2012-05-31T00:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: How we can customize FeatureDataForm source code</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242779#M6296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi jennifednery &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for prompt reply ....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i already found apply button(from resource.resx) (whose name is commitbutton in featuredataform.theme.xml) and i also added "Cancel button" on upper right corner but when i handle its click event its give following error ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;"Line: 56&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Error: Unhandled Error in Silverlight Application &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Code: 2531&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Category: ParserError&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Message: Failed to assign to property 'System.Windows.Controls.Primitives.ButtonBase.Click'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;File:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Line: 108&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Position: 160 "&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i just added button in xaml and write some code to popup message box on button1_Click event .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and how can i change the Dll name from ESRI.ArcGIS.Client.Toolkit&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;plz help&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 03:48:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242779#M6296</guid>
      <dc:creator>shariqueabdul</dc:creator>
      <dc:date>2012-05-31T03:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: How we can customize FeatureDataForm source code</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242780#M6297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can't directly add an event handler to default template of a templated control.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;To hook up to events of anything in the template you have either to create a template part or to create a command to bind to.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That being said, as Jennifer mentionned, you likely don't need to modify the code of the control. Styling the control should do the trick.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2012 05:39:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-we-can-customize-featuredataform-source-code/m-p/242780#M6297</guid>
      <dc:creator>DominiqueBroux</dc:creator>
      <dc:date>2012-05-31T05:39:21Z</dc:date>
    </item>
  </channel>
</rss>

