<?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: SL4 Breaks ESRI Behaviors in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613347#M15748</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Kevin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What issues are you having with ShowCoordinatesBehavior?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Aug 2010 03:42:18 GMT</pubDate>
    <dc:creator>JenniferNery</dc:creator>
    <dc:date>2010-08-26T03:42:18Z</dc:date>
    <item>
      <title>SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613338#M15739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Unless it is just me, which i sincerely hope it is, SL4 breaks the Measure Action and Constrained Extent Behavior. I will attach my constrained extent behavior code, but it is the same as the ESRI sample, a pretty basic feature. The same code works just great in SL3. Strange Error. Measure Action is much the same. I realize the ESRI tools for SL are developed on SL3, but am hoping to push my new site out in the next week or 2 in SL4. Mainly upgrading for the print functionality. Worth it! &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The error message:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"A value type of 'ConstrainExtentBehavior' cannot be added to a collection or dictionary of type 'BehaviorCollection'"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;xmlns:esriBehaviors="clr-namespace:ESRI.ArcGIS.Client.Behaviors;assembly=ESRI.ArcGIS.Client.Behaviors"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esriBehaviors:ConstrainExtentBehavior ConstrainedExtent="-120,30,-60,60" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;lt;/i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 19:01:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613338#M15739</guid>
      <dc:creator>PatrickBrooke</dc:creator>
      <dc:date>2010-04-26T19:01:03Z</dc:date>
    </item>
    <item>
      <title>SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613339#M15740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi patrickbrooke &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I had the same problem as yours and i implemented&amp;nbsp; it with code (insert this snippet in loaded event) and it works (I don't know why???)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;System.Windows.Interactivity.Behavior behavior = new ESRI.ArcGIS.Client.Behaviors.ConstrainExtentBehavior()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstrainedExtent = new ESRI.ArcGIS.Client.Geometry.Envelope(-120,30,-60,60)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.Windows.Interactivity.Interaction.GetBehaviors(Map).Add(behavior);&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Apr 2010 22:57:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613339#M15740</guid>
      <dc:creator>hcgis</dc:creator>
      <dc:date>2010-04-26T22:57:33Z</dc:date>
    </item>
    <item>
      <title>Great Work Around</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613340#M15741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks hc,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was working towards a workaounds just like that. Works perfectly, thanks for posting that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 14:01:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613340#M15741</guid>
      <dc:creator>PatrickBrooke</dc:creator>
      <dc:date>2010-04-27T14:01:53Z</dc:date>
    </item>
    <item>
      <title>Explicit directions please?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613341#M15742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;hi patrickbrooke &lt;BR /&gt;I had the same problem as yours and i implemented&amp;nbsp; it with code (insert this snippet in loaded event) and it works (I don't know why???)&lt;BR /&gt;&lt;BR /&gt;System.Windows.Interactivity.Behavior behavior = new ESRI.ArcGIS.Client.Behaviors.ConstrainExtentBehavior()&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; {&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; ConstrainedExtent = new ESRI.ArcGIS.Client.Geometry.Envelope(-120,30,-60,60)&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; };&lt;BR /&gt;System.Windows.Interactivity.Interaction.GetBehaviors(Map).Add(behavior);&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi!&amp;nbsp; I'm just starting out with Silverlight (and chose to learn on SL 4...) and encountered this same error.&amp;nbsp; Could you please explicitly tell me where to place this coded workaround?&amp;nbsp; i.e. Does it go in the vb/c# code behind page for MainPage.xaml or in MainPage.xaml or elsewhere?&amp;nbsp; Where should I put it in the code structure?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Apr 2010 00:39:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613341#M15742</guid>
      <dc:creator>KandaceKochivar</dc:creator>
      <dc:date>2010-04-29T00:39:35Z</dc:date>
    </item>
    <item>
      <title>SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613342#M15743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;in your MainPage.xaml you insert the&amp;nbsp; usercontol loaded event like this&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;UserControl x:Class="yourprojectname.MainPage"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/winfx/2006/xaml/presentation" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/winfx/2006/xaml/presentation&lt;/A&gt;&lt;SPAN&gt;" &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; xmlns:x="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.microsoft.com/winfx/2006/xaml" rel="nofollow" target="_blank"&gt;http://schemas.microsoft.com/winfx/2006/xaml&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;.............&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; Loaded="UserControl_Loaded"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;..............&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;and in the codebehind MainPage.xaml.cs you put :&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;private void UserControl_Loaded(object sender, RoutedEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Windows.Interactivity.Behavior behavior = new ESRI.ArcGIS.Client.Behaviors.ConstrainExtentBehavior()&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ConstrainedExtent = new ESRI.ArcGIS.Client.Geometry.Envelope(-120,30,-60,60)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; System.Windows.Interactivity.Interaction.GetBehaviors(Map).Add(behavior);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i hope that helps you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Apr 2010 20:41:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613342#M15743</guid>
      <dc:creator>hcgis</dc:creator>
      <dc:date>2010-04-29T20:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613343#M15744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi patrickbrooke &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you find any workaround for the slow loading for the featurelayer discussed in this thread &lt;/SPAN&gt;&lt;A href="http://forums.esri.com/Thread.asp?c=158&amp;amp;f=2455&amp;amp;t=302251&amp;amp;mc=12#952400"&gt;http://forums.esri.com/Thread.asp?c=158&amp;amp;f=2455&amp;amp;t=302251&amp;amp;mc=12#952400&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Apr 2010 11:22:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613343#M15744</guid>
      <dc:creator>hcgis</dc:creator>
      <dc:date>2010-04-30T11:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613344#M15745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings all, sorry to dredge up an old thread. New to ArcGIS, Silverlight, et al, and having a bit of trouble.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When attempting to implement the above code, I'm getting a "type or namespace name 'Behavior' does not exist in the namespace 'ESRI.ArcGIS.Client' (are you missing an assembly reference?)" Since I'm new to the API, I'm finding that most information and documentation applies to the 1.x version and not to 2.0, but I can't find anywhere to reference the Behavior namespace. Are you guys utilizing the old version of the API, or should this be pulling from &lt;/SPAN&gt;&lt;A href="http://schemas.esri.com/arcgis/client/2009?"&gt;http://schemas.esri.com/arcgis/client/2009?&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the help, and my apologies for the stupid question.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Aug 2010 17:21:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613344#M15745</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2010-08-02T17:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613345#M15746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It might be easier to use Expression Blend for this or you can also do this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Add reference to the following assemblies:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI.ArcGIS.Client.Behaviors.dll&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;System.Windows.Interactivity&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Having the following XAML namespace definitions:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;xmlns:esri="&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://schemas.esri.com/arcgis/client/2009" rel="nofollow" target="_blank"&gt;http://schemas.esri.com/arcgis/client/2009&lt;/A&gt;&lt;SPAN&gt;"&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;should be sufficient. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This will allow you to&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ConstrainExtentBehavior ConstrainedExtent="-120,30,-60,60" /&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Aug 2010 03:19:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613345#M15746</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-08-03T03:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613346#M15747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does anyone have a workaround for ShowCoordinatesBehavior? Or do we have any idea on a fix from ESRI on this in 2.1?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Aug 2010 14:44:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613346#M15747</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2010-08-25T14:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613347#M15748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Kevin,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What issues are you having with ShowCoordinatesBehavior?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 03:42:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613347#M15748</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2010-08-26T03:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613348#M15749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jennifer:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;None, at the moment, since I just realized my stupidity. Placed the code in the wrong spot (wasn't in esri:map).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Would be best for all of you to ignore my messages from here on out. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 14:44:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613348#M15749</guid>
      <dc:creator>KevinSesock</dc:creator>
      <dc:date>2010-08-26T14:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613349#M15750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Kevin,&lt;BR /&gt;&lt;BR /&gt;What issues are you having with ShowCoordinatesBehavior?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I cannot seem to use &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ConstrainExtentBehavior ConstrainedExtent="-9161000 4875000 -7532000 5779000"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &amp;lt;/i:Interaction.Behaviors&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;...&amp;nbsp; My base map is in web Mercator&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Nov 2010 17:17:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613349#M15750</guid>
      <dc:creator>MatthewStarr</dc:creator>
      <dc:date>2010-11-18T17:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: SL4 Breaks ESRI Behaviors</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613350#M15751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It works for me. I tried the following where my map is in 102100 Spatial Reference.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
 &amp;lt;esri:Map x:Name="MyMap" ExtentChanged="MyMap_ExtentChanged"&amp;gt;
&amp;nbsp; &amp;lt;esri:ArcGISTiledMapServiceLayer Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer" /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;i:Interaction.Behaviors&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;esri:ConstrainExtentBehavior ConstrainedExtent="-4814883.48538718,-5216317.8461096,9656548.66851654,5273956.71733734" /&amp;gt;
&amp;nbsp;&amp;nbsp; &amp;lt;/i:Interaction.Behaviors&amp;gt;
 &amp;lt;/esri:Map&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The only thing I see in your code that may be the problem is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;&amp;lt;i:Interaction.Behaviors&amp;gt;&amp;nbsp; &lt;BR /&gt;&amp;lt;esri:ConstrainExtentBehavior&amp;nbsp;&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;ConstrainedExtent="-9161000 4875000 -7532000 5779000"/&lt;/SPAN&gt;&amp;gt;&amp;nbsp; &lt;BR /&gt;&amp;lt;/i:Interaction.Behaviors&amp;gt;&amp;nbsp; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Extent is not delimited by comma. This will lead to XamlParseException.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:13:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613350#M15751</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T02:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Explicit directions please?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613351#M15752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This error happens when you don't have a reference to ESRI.ArcGIS.Client.Behaviors in your project. Add the reference and you should be able to add it without the error. [I had the same problem and fixed it earlier]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 May 2011 12:37:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/sl4-breaks-esri-behaviors/m-p/613351#M15752</guid>
      <dc:creator>BrentStevener</dc:creator>
      <dc:date>2011-05-25T12:37:49Z</dc:date>
    </item>
  </channel>
</rss>

