<?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: WPF Toolkit 2.0 - Overview map error in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91892#M2268</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Map and Layer property in your code use DependencyProperty that sets Map and Layer of the OverviewMap contro? (similar to code below)&lt;BR /&gt;&lt;BR /&gt;I do not get error when I have the following code in OtherWindow.xaml.cs&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
public Map Map
{
 get { return (Map)GetValue(MapProperty); }
 set { SetValue(MapProperty, value); }
}
 
public static readonly DependencyProperty MapProperty = DependencyProperty.Register("Map", typeof(Map), typeof(OtherWindow), new PropertyMetadata(OnMapPropertyChanged));
&amp;nbsp; 
private static void OnMapPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Map)
&amp;nbsp; ow.MyOverviewMap.Map = e.NewValue as Map;
}
&amp;nbsp; 
public Layer Layer
{
 get { return (Layer)GetValue(LayerProperty); }
 set { SetValue(LayerProperty, value); }
}

public static readonly DependencyProperty LayerProperty = DependencyProperty.Register("Layer", typeof(Layer), typeof(OtherWindow), new PropertyMetadata(OnLayerPropertyChanged));
private static void OnLayerPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Layer)
&amp;nbsp; ow.MyOverviewMap.Layer = e.NewValue as Layer;
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;In MainWindow.xaml.cs&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
 OtherWindow ow = new OtherWindow()
 {
 Map = this.MyMap,
 Layer = new ArcGISTiledMapServiceLayer()
 {
&amp;nbsp; Url = (this.MyMap.Layers[0] as ArcGISTiledMapServiceLayer).Url
 }
};
ow.Show();
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried the code that you supplied. The application no longer freezes up completly but no overview map is diplayed. I just get a blank white window. I put a breakpoint in the application and notice that the Layer supplied is never initalized. Upon calling initalize the application freezes up again. What am I doing wrong here, this seems like such a simple task.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 23:31:14 GMT</pubDate>
    <dc:creator>JoshuaCorcoran</dc:creator>
    <dc:date>2021-12-10T23:31:14Z</dc:date>
    <item>
      <title>WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91886#M2262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have created a WPF Window. If I place the OverviewMap Control in the new window and load the application it freezes at the place where you set the Layer property. If I pull the overview map out of the new window and place it on the form with the map it works perfectly. Is this an known error and is there a work around?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 17:26:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91886#M2262</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2011-02-14T17:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91887#M2263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm not sure I know how to replicate the issue so you have two different windows, one with your map and one with OverviewMap? How does OverviewMap set its Map property?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suspect the problem here is with&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;esri:OverviewMap x:Name="MyOverviewMap"&amp;nbsp; Map="{Binding ElementName=MyMap}"&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Element binding will not work if MyMap exists in a different window. For the window that will hold OverviewMap control, you may need to create a Map DependencyProperty for the OverviewMap control to use.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:00:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91887#M2263</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-12T16:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91888#M2264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have created a WPF Window. If I place the OverviewMap Control in the new window and load the application it freezes at the place where you set the Layer property. If I pull the overview map out of the new window and place it on the form with the map it works perfectly. Is this an known error and is there a work around?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I created a new WPF Application. You get the standard MainWindow.xaml. I placed a map control on this main page. I then created a new WPF Window. Right click on Project -&amp;gt; New Item -&amp;gt; Window (WPF) called it frmOverview. In the xaml of the new window I added&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt;esri:OverviewMap x:Name="ovmap" Margin="5"/&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In the code behind for that page I added the following:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public partial class frmOverviewMap: Window&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; public Map Map { get; set;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; public Layer Layer { get; set;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; private void Window_Loaded(object sender, RoutedEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ovmap.Map = this.Map;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.ovmap.Layer = this.Layer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My implementation for the main form is as follows:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;private void Window_Loaded(object sender, RoutedEventArgs e)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; {&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var newLayer = new ArcGISTiledMapService();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newLayer.Url = ""&amp;lt;SOME URL&amp;gt;";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newlayer.ID = "&amp;lt;SOME ID&amp;gt;";&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var newForm = new frmOverviewMap();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newForm.Map = this.map;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newForm.Layer = newLayer;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newform.Topmost = true;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; newform.Show();&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After the layer intalizes the whole app freezes.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 18:10:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91888#M2264</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2011-02-14T18:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91889#M2265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; I'm not sure I know how to replicate the issue so you have two different windows, one with your map and one with OverviewMap? How does OverviewMap set its Map property?&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt;I suspect the problem here is with&amp;nbsp; &lt;BR /&gt; &lt;PRE class="lia-code-sample line-numbers language-none"&gt;
&amp;lt;esri:OverviewMap x:Name="MyOverviewMap" &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt; Map="{Binding ElementName=MyMap}"&amp;gt;&lt;/SPAN&gt;
&lt;/PRE&gt; &lt;BR /&gt; &lt;BR /&gt;Element binding will not work if MyMap exists in a different window. For the window that will hold OverviewMap control, you may need to create a Map DependencyProperty for the OverviewMap control to use.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please see sample code above.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:31:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91889#M2265</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2021-12-10T23:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91890#M2266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Map and Layer property in your code use DependencyProperty that sets Map and Layer of the OverviewMap contro? (similar to code below)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I do not get error when I have the following code in OtherWindow.xaml.cs&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
public Map Map
{
 get { return (Map)GetValue(MapProperty); }
 set { SetValue(MapProperty, value); }
}
 
public static readonly DependencyProperty MapProperty = DependencyProperty.Register("Map", typeof(Map), typeof(OtherWindow), new PropertyMetadata(OnMapPropertyChanged));
&amp;nbsp; 
private static void OnMapPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Map)
&amp;nbsp; ow.MyOverviewMap.Map = e.NewValue as Map;
}
&amp;nbsp; 
public Layer Layer
{
 get { return (Layer)GetValue(LayerProperty); }
 set { SetValue(LayerProperty, value); }
}

public static readonly DependencyProperty LayerProperty = DependencyProperty.Register("Layer", typeof(Layer), typeof(OtherWindow), new PropertyMetadata(OnLayerPropertyChanged));
private static void OnLayerPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Layer)
&amp;nbsp; ow.MyOverviewMap.Layer = e.NewValue as Layer;
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In MainWindow.xaml.cs&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
 OtherWindow ow = new OtherWindow()
 {
 Map = this.MyMap,
 Layer = new ArcGISTiledMapServiceLayer()
 {
&amp;nbsp; Url = (this.MyMap.Layers[0] as ArcGISTiledMapServiceLayer).Url
 }
};
ow.Show();
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:31:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91890#M2266</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2021-12-10T23:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91891#M2267</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;Will try that code first thing in the morning, and let you know if it works for me. Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Feb 2011 19:41:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91891#M2267</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2011-02-14T19:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91892#M2268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Map and Layer property in your code use DependencyProperty that sets Map and Layer of the OverviewMap contro? (similar to code below)&lt;BR /&gt;&lt;BR /&gt;I do not get error when I have the following code in OtherWindow.xaml.cs&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
public Map Map
{
 get { return (Map)GetValue(MapProperty); }
 set { SetValue(MapProperty, value); }
}
 
public static readonly DependencyProperty MapProperty = DependencyProperty.Register("Map", typeof(Map), typeof(OtherWindow), new PropertyMetadata(OnMapPropertyChanged));
&amp;nbsp; 
private static void OnMapPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Map)
&amp;nbsp; ow.MyOverviewMap.Map = e.NewValue as Map;
}
&amp;nbsp; 
public Layer Layer
{
 get { return (Layer)GetValue(LayerProperty); }
 set { SetValue(LayerProperty, value); }
}

public static readonly DependencyProperty LayerProperty = DependencyProperty.Register("Layer", typeof(Layer), typeof(OtherWindow), new PropertyMetadata(OnLayerPropertyChanged));
private static void OnLayerPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
 OtherWindow ow = d as OtherWindow;
 if (ow != null &amp;amp;&amp;amp; e.NewValue is Layer)
&amp;nbsp; ow.MyOverviewMap.Layer = e.NewValue as Layer;
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;In MainWindow.xaml.cs&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
private void Window_Loaded(object sender, RoutedEventArgs e)
{
 OtherWindow ow = new OtherWindow()
 {
 Map = this.MyMap,
 Layer = new ArcGISTiledMapServiceLayer()
 {
&amp;nbsp; Url = (this.MyMap.Layers[0] as ArcGISTiledMapServiceLayer).Url
 }
};
ow.Show();
&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried the code that you supplied. The application no longer freezes up completly but no overview map is diplayed. I just get a blank white window. I put a breakpoint in the application and notice that the Layer supplied is never initalized. Upon calling initalize the application freezes up again. What am I doing wrong here, this seems like such a simple task.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:31:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91892#M2268</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2021-12-10T23:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91893#M2269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Can you try to run Fiddler with your application to monitor web requests? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I really could not replicate the issue you are facing with OverviewMap. I modified a copy of this sample in WPF &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#OverviewMap" rel="nofollow"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#OverviewMap&lt;/A&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;. Placing OverviewMap code in another Window with the code I included in my last post.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Did you replace "OtherWindow" with your own class name?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt; &lt;BR /&gt;public static readonly DependencyProperty MapProperty = DependencyProperty.Register("Map", typeof(Map), typeof(&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;OtherWindow&lt;/SPAN&gt;), new PropertyMetadata(OnMapPropertyChanged));&amp;nbsp; &lt;BR /&gt; &lt;BR /&gt;public static readonly DependencyProperty LayerProperty = DependencyProperty.Register("Layer", typeof(Layer), typeof(&amp;nbsp; &lt;SPAN style="color:&amp;quot;red&amp;quot;;"&gt;OtherWindow&lt;/SPAN&gt;), new PropertyMetadata(OnLayerPropertyChanged));&amp;nbsp; &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If that still does not work for you, download Toolkit source code from CodePlex &lt;/SPAN&gt;&lt;A href="http://esrisilverlight.codeplex.com/" rel="nofollow"&gt;http://esrisilverlight.codeplex.com/&lt;/A&gt;&lt;SPAN&gt; and debug through it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 15:57:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91893#M2269</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-15T15:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91894#M2270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Can you try to run Fiddler with your application to monitor web requests? &lt;BR /&gt;&lt;BR /&gt;I really could not replicate the issue you are facing with OverviewMap. I modified a copy of this sample in WPF&amp;nbsp; &lt;A href="http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#OverviewMap"&gt;http://help.arcgis.com/en/webapi/silverlight/samples/start.htm#OverviewMap&lt;/A&gt;. &lt;BR /&gt;. Placing OverviewMap code in another Window with the code I included in my last post.&lt;BR /&gt;&lt;BR /&gt;Did you replace "OtherWindow" with your own class name?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If that still does not work for you, download Toolkit source code from CodePlex &lt;A href="http://esrisilverlight.codeplex.com/"&gt;http://esrisilverlight.codeplex.com/&lt;/A&gt; and debug through it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Could you send me a zip file of the project you tested it with. I can try and run the project from here and see if I get the same error. My email address is: &lt;/SPAN&gt;&lt;A href="mailto:corcoranj.ctr@jdi.socom.mil"&gt;corcoranj.ctr@jdi.socom.mil&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Josh&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 17:01:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91894#M2270</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2011-02-15T17:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91895#M2271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Sure. I just added it as attachment to this post in case other dev will need to do something similar. Kindly see attached WPF project.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Feb 2011 17:10:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91895#M2271</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-15T17:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91896#M2272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Sure. I just added it as attachment to this post in case other dev will need to do something similar. Kindly see attached WPF project.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jennifer,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the code. This code did not work for me either. When running the application I simply get an empty overview map with an uninitizled layer. I did find a work around though this is what I did. In otherwindow.xaml I created an empty Grid and named it Layoutroot. I then passed the URL to the otherwindow instead of the layer and using the XamlReader constructed the Xaml in C# with the dynamic URL and added it to the empty grid. I discovered this becuase I noticied when I hardcoded the url into your example it worked. Thanks for all your help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;V/R,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Joshua&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 16:29:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91896#M2272</guid>
      <dc:creator>JoshuaCorcoran</dc:creator>
      <dc:date>2011-02-22T16:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: WPF Toolkit 2.0 - Overview map error</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91897#M2273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It's good that you have it working now. However if hard-coded value worked, then all you need to check are the Binding statement and the Dependency Property if they are set up correctly. I still do not see why you are getting a different behavior with the sample.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Feb 2011 23:41:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/wpf-toolkit-2-0-overview-map-error/m-p/91897#M2273</guid>
      <dc:creator>JenniferNery</dc:creator>
      <dc:date>2011-02-22T23:41:00Z</dc:date>
    </item>
  </channel>
</rss>

