Hi,Is it somehow possible to show multiple infowindows simultaneously? I tried adding an itemscontrol with infowindows to my xaml, but when I run it none of the infowindows shows up. If I simply replace the datatemplate in the itemscontrol with button instead of infowindows it works straight away. I know that all the bindings are working, so that's not the problem. The code for the itemscontrol is included below: <ItemsControl x:Name="InfoWindows2" ItemsSource="{Binding Resources, Source={StaticResource mvm} }" >
<ItemsControl.ItemTemplate>
<DataTemplate>
<esri:InfoWindow IsOpen="True" Anchor="{Binding MapPoint}" Height="300px"
Width="300px"
Background="Black"
Foreground="White"
Map="{Binding ElementName=MyMap}"
ContentTemplate="{StaticResource ResourceLayerInfoWindowTemplate}"
Content="{Binding Resources, Source={StaticResource mvm}}">
</esri:InfoWindow>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
If it is impossible to show multiple infowindows at the same time, is there some other control I could use? All answers are greatly appreciated! 🙂