<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - Using Virtual Earth in a WPF Application</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/412485_100x75.jpg</url>
		<title>Channel 9 - Using Virtual Earth in a WPF Application</title>
		<link></link>
	</image>
	<description>Marc Schweigert&amp;nbsp;shows you how to use Virtual Earth in a WPF application by using a prototype WPF Virtual Earth control.&amp;nbsp; You&#39;ll also see a walkthrough of how the prototype control was built.&amp;nbsp;
 You can download the prototype and sample application at&amp;nbsp;http://blogs.msdn.com/devkeydet/archive/2008/06/24/wpf-and-virtual-earth-revisited.aspx.&amp;nbsp;
</description>
	<link></link>
	<language>en</language>
	<pubDate>Sun, 19 May 2013 18:53:19 GMT</pubDate>
	<lastBuildDate>Sun, 19 May 2013 18:53:19 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Using Virtual Earth in a WPF Application</title>
		<description>
			<![CDATA[Great Screencast!<br>
<br>
I played around with Virtual Earth and WPF a while back but ran into Z-Order and DOM issues. Looks like the latest version of the WPF browser control and your &quot;layered window trickery&quot; solves most of the issues.<br>
<br>
However, I think the real power in&nbsp;doing something like this would be XAML pushpins with dynamic colors and numbers.&nbsp;I imagine just keeping the hidden top layer buttons visible and using a small transparent gif for the ve pushpin would do it. You'd lose the
 pushpin mouseover but I guess you could use the button mouseover event at that point.&nbsp;A custom dashboard would be needed to prevent the XAML buttons from covering it as well.&nbsp;&nbsp;Any other thoughts? Thanks!<p>posted by AppStar08</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633504489330000000</link>
		<pubDate>Mon, 30 Jun 2008 18:55:33 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633504489330000000</guid>
		<dc:creator>AppStar08</dc:creator>
	</item>
	<item>
		<title>Re: Using Virtual Earth in a WPF Application</title>
		<description>
			<![CDATA[
<p>I actually had WPF pushpins originally, but chose not to go that route.&nbsp; That's not to say you couldn't.&nbsp; In fact, I actually use an invisible (Opacity=&quot;.01&quot;) WPF button over the pushpin rendered by the map.&nbsp; That's how I chose to implement the ability to
 hover over the pushpin and get a WPF InfoBox (implemented as a UserControl).&nbsp; If you really want to have WPF based pushpins, just comment out line 387 in VEMap and comment out line 401 which is the call telling VE to add the pushpin.</p>
<p>I chose not to use WPF pushpins for two reasons.&nbsp; First, it seemed like overkill to render such a small UI element as a vector graphic since pushpins are typically fixed width and height.&nbsp; Second, due to the delay in event notification between JavaScript
 &amp; managed code, the repositioning of the pushpins is a little “jerky.”&nbsp; So I am a bigger fan of drawing your pushpins with a vector drawing tool, and then saving them as bitmaps.&nbsp; You get the same visual experience with better overall perf.&nbsp; Your mileage may
 vary.</p>
<p>posted by keydet</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633505192710000000</link>
		<pubDate>Tue, 01 Jul 2008 14:27:51 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633505192710000000</guid>
		<dc:creator>keydet</dc:creator>
	</item>
	<item>
		<title>Re: Using Virtual Earth in a WPF Application</title>
		<description>
			<![CDATA[Thanks for your insight. That takes me back to using Silverlight with the VE map inside the web browser control. Unfortunately you lose Drag-n-Drop between Silverlight and the WPF app; as well as some databinding and pure managed code events. Not to mention
 the XAML would need to reside in the VE map control project, not the WPF app.<p>posted by AppStar08</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633505208420000000</link>
		<pubDate>Tue, 01 Jul 2008 14:54:02 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633505208420000000</guid>
		<dc:creator>AppStar08</dc:creator>
	</item>
	<item>
		<title>Re: Using Virtual Earth in a WPF Application</title>
		<description>
			<![CDATA[i'm getting javascript errors when i click the &quot;Birds-eye&quot; view (line 41, char 13, &quot;Input string was not the correct format&quot;), so i just thought i'd bring up the question of debugging the script inside a WPF host app - can it be done?
<br>
<p>posted by recombinant</p>]]>
		</description>
		<link>http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633578106410000000</link>
		<pubDate>Tue, 23 Sep 2008 23:50:41 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Blogs/keydet/Using-Virtual-Earth-in-a-WPF-Application#c633578106410000000</guid>
		<dc:creator>recombinant</dc:creator>
	</item>
</channel>
</rss>