<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Veracity Solutions Blog &#187; Helpful Links</title>
	<atom:link href="http://blogs.veracitysolutions.com/category/helpful-links/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogs.veracitysolutions.com</link>
	<description>Software Consulting That Rocks</description>
	<lastBuildDate>Thu, 22 Apr 2010 17:21:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create a Zooming Button Style In Silverlight Without Code</title>
		<link>http://blogs.veracitysolutions.com/create-a-zooming-button-style-in-silverlight-without-code/</link>
		<comments>http://blogs.veracitysolutions.com/create-a-zooming-button-style-in-silverlight-without-code/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 14:29:37 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Blend]]></category>
		<category><![CDATA[Helpful Links]]></category>
		<category><![CDATA[How To...]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Styles]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/19/create-a-zooming-button-style-in-silverlight-without-code/</guid>
		<description><![CDATA[Download code for this sample
I was reading Mike Snow&#8217;s blog and he had a recent Silverlight tutorial on creating a Zooming toolbar. I looked at it and said to myself, &#8220;I think I can do that without code in Blend!&#8221; So here&#8217;s a tutorial on exactly that.
End product :

Big bonuses to this XAML-only method include:

Much [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.veracitysolutions.com/wp-content/uploads/2008/09/zoomingbtn.zip" title="(and here is the code by popular request)">Download code for this sample</a></p>
<p>I was reading Mike Snow&#8217;s blog and he had a recent <a href="http://silverlight.net/blogs/msnow/archive/2008/09/10/silverlight-tip-of-the-day-39-how-to-create-a-zoom-toolbar.aspx">Silverlight tutorial on creating a Zooming toolbar</a>. I looked at it and said to myself, &#8220;I think I can do that without code in Blend!&#8221; So here&#8217;s a tutorial on exactly that.</p>
<p>End product :</p>
<p><iframe scrolling="no" frameBorder="0" src="http://silverlight.services.live.com/invoke/77530/ZoomToolbar2/iframe.html" style="width: 432px; height: 392px"></iframe></p>
<p>Big bonuses to this XAML-only method include:</p>
<ul>
<li>Much smoother animation</li>
<li>Midway animation (if you fly over a button, it doesn&#8217;t need to animate all the way up before it starts to animate back down)</li>
<li>Really low overhead</li>
<li>Can be done and maintained entirely by a designer in Blend without any code</li>
</ul>
<p>1) create a new Silverlight project in either Visual Studio 2008 or Blend 2.5.</p>
<p>2) In Blend, add a new folder for our images by right-clicking on the project and selecting &#8220;Add New Folder&#8221;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image001.png"><img border="0" width="207" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image001-thumb.png" alt="clip_image001" height="72" style="border-width: 0px" /></a></p>
<p>3) Pull in our images by right-clicking on our new folder and selecting &#8220;Add Existing Item&#8230;&#8221; Navigate to the images you want to use and select &#8220;OK&#8221; to bring them into the project.</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0014.png"><img border="0" width="273" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0014-thumb.png" alt="clip_image001[4]" height="63" style="border-width: 0px" /></a></p>
<p>4) Create the button to which you want to add the image and then double-click it in the Obejcts and Timeline pane so that it has a yellow outline around it.</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0016.png"><img border="0" width="314" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0016-thumb.png" alt="clip_image001[6]" height="180" style="border-width: 0px" /></a></p>
<p>5) Now, go to the image you want to insert (in the Project panel), right click on it and select &#8220;Insert&#8221;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0018.png"><img border="0" width="317" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image0018-thumb.png" alt="clip_image001[8]" height="188" style="border-width: 0px" /></a></p>
<p>OK&#8230; so now we have a button with an image in it. Now it&#8217;s time to make the sucker zoom.</p>
<p>6) Right click on the button and select &#8220;Edit Control Parts (Template) -&gt; Edit a Copy&#8230;&#8221;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00110.png"><img border="0" width="338" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00110-thumb.png" alt="clip_image001[10]" height="86" style="border-width: 0px" /></a></p>
<p>Name your custom Template and hit OK</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00112.png"><img border="0" width="382" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00112-thumb.png" alt="clip_image001[12]" height="88" style="border-width: 0px" /></a></p>
<p>7) In the &#8220;States&#8221; pane, you see a set of &#8220;CommonStates&#8221; (Normal, MouseOver, Pressed, and Disabled). Click on the MouseOver state and a red box will surround your composition, indicating that any changes made will be changes to the &#8220;Mouse Over&#8221; state, not to the default control.</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00114.png"><img border="0" width="255" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00114-thumb.png" alt="clip_image001[14]" height="156" style="border-width: 0px" /></a></p>
<p>Recording state:</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00116.png"><img border="0" width="160" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00116-thumb.png" alt="clip_image001[16]" height="40" style="border-width: 0px" /></a></p>
<p>8] Click on the highest level item in the template (in my case, it is a &#8220;Grid&#8221;) and go to the &#8220;Transform&#8221; section in the &#8220;Properties&#8221; pane and select the &#8220;Scale&#8221; transformation tab. Change the X and Y scales to &#8220;1.5&#8243;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00118.png"><img border="0" width="281" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00118-thumb.png" alt="clip_image001[18]" height="309" style="border-width: 0px" /></a></p>
<p>If you run the project now, you&#8217;ll notice that we get a cool zoom in effect on the mouse over, but our zoom out when the mouse leaves the button is basically a snap back to the original size. Let&#8217;s fix that now.</p>
<p>9) Click on the the arrow icon in the MouseOver state in the States pane and select the &#8220;MouseOver -&gt; Normal&#8221;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00120.png"><img border="0" width="380" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00120-thumb.png" alt="clip_image001[20]" height="109" style="border-width: 0px" /></a></p>
<p>In the &#8220;Transition Duration&#8221; box, type &#8220;.2&#8243;</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00124.png"><img border="0" width="243" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00124-thumb.png" alt="clip_image001[24]" height="74" style="border-width: 0px" /></a></p>
<p>10) Extra Designer Happiness Bonus Step! &#8211; If you&#8217;d like to have a zoom effect that isn&#8217;t strictly linear, open up the timeline view with the button on the right hand of the state recording box (seen below).</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00126.png"><img border="0" width="255" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00126-thumb.png" alt="clip_image001[26]" height="54" style="border-width: 0px" /></a></p>
<p>Click and drag the keyframe (the light gray oval below) to the point you want it. I put mine at .3 seconds.</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00128.png"><img border="0" width="276" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00128-thumb.png" alt="clip_image001[28]" height="136" style="border-width: 0px" /></a></p>
<p>With the keyframe selected, you should see an &#8220;Easing&#8221; pane on the right. The default easing is linear (aka. no easing), but you can change the easing curve by just dragging the yellow dots. Here is the easing curve I&#8217;ve found works pretty well for my apps.</p>
<p><a href="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00130.png"><img border="0" width="282" src="http://www.designerwpf.com/wp-content/uploads/2008/09/clip-image00130-thumb.png" alt="clip_image001[30]" height="326" style="border-width: 0px" /></a></p>
<p>That&#8217;s it. Now you can just assign this template to a button and you&#8217;ll have this zooming functionality all set up.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/create-a-zooming-button-style-in-silverlight-without-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight and WPF Link Dump</title>
		<link>http://blogs.veracitysolutions.com/silverlight-and-wpf-link-dump/</link>
		<comments>http://blogs.veracitysolutions.com/silverlight-and-wpf-link-dump/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 21:20:17 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Helpful Links]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/09/11/silverlight-and-wpf-link-dump/</guid>
		<description><![CDATA[I&#8217;ve been too quiet lately and I need to dump some links so I don&#8217;t forget about them:

SVLite Effects from Cellbi &#8211; Amazing work with Silverlight&#8230; play around with their Carousel project in particular. Awesome.
Silverlight.FX &#8211; From Nikhil Kothari, a very useful FX library with about a dozen kinds of transitions and effects. Download library [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been too quiet lately and I need to dump some links so I don&#8217;t forget about them:</p>
<ul>
<li><a href="http://www.cellbi.com/SvLite/Demo/SvFxDemo.html">SVLite Effects from Cellbi</a> &#8211; Amazing work with Silverlight&#8230; play around with their Carousel project in particular. Awesome.</li>
<li><a href="http://www.nikhilk.net/Content/Posts/SilverlightEffects/EffectsSample.htm">Silverlight.FX</a> &#8211; From Nikhil Kothari, a very useful FX library with about a dozen kinds of transitions and effects. <a href="http://www.nikhilk.net/Silverlight-Effects-Transitions.aspx">Download library here</a>. <a href="http://www.nikhilk.net/Content/Posts/SilverlightEffects/EffectsSample.htm">View samples here</a>.</li>
<li><a href="http://timheuer.com/blog/archive/2008/09/08/customizing-slider-enable-move-mouse-to-point.aspx">Silverlight Slider Solutions</a> &#8211; From Tim Heuer, if you&#8217;re having trouble with the Silverlight slider, this is probably a good place for you.</li>
<li><a href="http://www.projectrosetta.com/">Project Rosetta</a> &#8211; Familiar with Flash but looking to get into Silverlight? This is your place. It just started up, but design god Rick Barraza is a part of the group so it promises great things.</li>
<li><a href="http://joshsmithonwpf.wordpress.com/2008/09/06/synchronizing-the-width-of-elements-in-an-itemscontrol/">Getting all your controls to have the same width in an Items Control</a> &#8211; there really is no good way of summarizing what Josh Smith is doing here, but he&#8217;s using the fabulous Grid.IsSharedSizeScope property, which is not well known but is fantastically useful for aligning items (especially in WPF forms).</li>
<li><a href="http://blogs.msdn.com/mgrayson/archive/2008/08/01/silverlight-2-samples-dragging-docking-expanding-panels-part-1.aspx">Dragging, Docking and Expanding Panels in Silverlight Part 1</a>, <a href="http://blogs.msdn.com/mgrayson/archive/2008/08/18/silverlight-2-samples-dragging-docking-expanding-panels-part-2.aspx">Part 2</a>, <a href="http://blogs.msdn.com/mgrayson/archive/2008/08/29/silverlight-2-samples-dragging-docking-expanding-panels-part-3.aspx">Part 3</a> &#8211; Martin Grayson has a great series of posts on some more advanced interactions possible with Silverlight.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/silverlight-and-wpf-link-dump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Get Windows Live Writer</title>
		<link>http://blogs.veracitysolutions.com/go-get-windows-live-writer/</link>
		<comments>http://blogs.veracitysolutions.com/go-get-windows-live-writer/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 18:19:28 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Helpful Links]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/08/06/go-get-windows-live-writer/</guid>
		<description><![CDATA[My previous post is the first one that I&#8217;ve used Windows Live Writer to create. I changed from the default WordPress blog post composer because Live Writer gives me the following features:

I don&#8217;t have to upload my images file-by-file&#8230; I just use OneNote to screen grab and then copy and paste from OneNote into Live [...]]]></description>
			<content:encoded><![CDATA[<p>My previous post is the first one that I&#8217;ve used <a href="http://get.live.com/writer/overview">Windows Live Writer</a> to create. I changed from the default WordPress blog post composer because Live Writer gives me the following features:</p>
<ul>
<li>I don&#8217;t have to upload my images file-by-file&#8230; I just use OneNote to screen grab and then copy and paste from OneNote into Live Writer and Live Writer just uploads everything to my site. My posts are pretty image heavy, so I probably saved about 30 minutes of time with this feature alone.</li>
<li>The <a href="http://gallery.live.com/liveItemDetail.aspx?li=d8835a5e-28da-4242-82eb-e1a006b083b9&amp;bt=9&amp;pl=8">Paste from Visual Studio</a> plug-in lets me&#8230; well&#8230; paste from Visual Studio and maintain the colors and formatting. You&#8217;ll probably see more code integrated into my posts, since I hate putting in code that isn&#8217;t color coordinated. Time saved: about 15 minutes</li>
<li>I don&#8217;t lose my posts to some web or Javascript weirdness. The posts I put up take, on average, 2 hours to create. Losing my work is devastating.</li>
<li>Super simple interface. I don&#8217;t know what team at Microsoft was working on this, but I wouldn&#8217;t be surprised if they took their cues from the OneNote team. Huge Interaction Designer props for harnessing the power of simplicity and elegance. I never have to ask myself how to do something&#8230; it is transparent. Now, maybe I&#8217;m not trying to do enough complex stuff, but I&#8217;m ok with that. Way to design 90% of the audience rather than agonize over that last 10%. </li>
</ul>
<p><a href="http://get.live.com/writer/overview">Go get it.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/go-get-windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Clicking or DoubleClicking on an Item in a ListView</title>
		<link>http://blogs.veracitysolutions.com/clicking-or-doubleclicking-on-an-item-in-a-listview/</link>
		<comments>http://blogs.veracitysolutions.com/clicking-or-doubleclicking-on-an-item-in-a-listview/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 21:58:13 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Helpful Links]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/07/15/clicking-or-doubleclicking-on-an-item-in-a-listview/</guid>
		<description><![CDATA[This is little more than a pointer toÂ aÂ fantastic post by Mike over at Mike&#8217;s Code Blog, but I figured it was worth passing along. Mike&#8217;s post is focused on finding whichÂ item was double clicked, while mine is on determining when the double clicking happened on an item at all.
Â I&#8217;ve recently come up against a problem [...]]]></description>
			<content:encoded><![CDATA[<p>This is little more than a pointer toÂ aÂ fantastic post by Mike over at <a href="http://mikescodeblog.blogspot.com/2007/12/wpf-listview-getting-clicked-item.html">Mike&#8217;s Code Blog</a>, but I figured it was worth passing along. Mike&#8217;s post is focused on finding whichÂ item was double clicked, while mine is on determining when the double clicking happened on an item at all.</p>
<p>Â I&#8217;ve recently come up against a problem in which we were attaching a doubleclick event to our listview, only to discover it fires when we did something like click on the scrollbar quickly. Since we only wanted it to fire when we were double clicking on the listview item, we had to come up with some way of figuring out where in the listview the user had clicked.</p>
<p>Mike&#8217;s code made it easy&#8230; I&#8217;m reproducing our permutation of it here:</p>
<p>First, we put our event pointer in the XAML like so:</p>
<p><font size="2" color="#0000ff">&lt;<font size="2" color="#a31515">ListView </font><font size="2" color="#ff0000">MouseDoubleClick</font><font size="2" color="#0000ff">=&#8221;ListViewDoubleClick&#8221;&gt;</font></p>
<p></font></p>
<p>Then we put this in the code behind:<font size="2" color="#000000"><font size="2" color="#0000ff"><font size="2" color="#0000ff"></p>
<p>protected</font><font size="2" color="#000000"> </font><font size="2" color="#0000ff">void</font><font size="2" color="#000000"> ListView_MouseDoubleClick(</font><font size="2" color="#0000ff">object</font><font size="2" color="#000000"> sender, </font><font size="2" color="#2b91af">RoutedEventArgs</font><font size="2"><font color="#000000"> e)<br />
</font>{<br />
<font color="#008000">Â Â Â Â  </font></font></font></font><font size="2" color="#000000"><font color="#008000">//grab the original element that was doubleclicked on andÂ search from child to parent until<br />
Â Â Â  //you findÂ either a ListViewItem orÂ the top of the tree</font><br />
Â Â Â  <font size="2" color="#2b91af">DependencyObject</font><font size="2" color="#000000"> originalSource = (</font><font size="2" color="#2b91af">DependencyObject</font><font size="2"><font color="#000000">)e.OriginalSource;<br />
Â Â Â  </font></font><font size="2" color="#0000ff">while</font><font size="2"> ((originalSource != </font><font size="2" color="#0000ff">null</font><font size="2">) &amp;&amp; !(originalSource </font><font size="2" color="#0000ff">is</font><font size="2"> </font><font size="2" color="#2b91af">ListViewItem</font><font size="2">))Â<br />
Â Â Â Â  {<br />
Â Â Â Â Â Â Â Â Â  originalSource = </font><font size="2" color="#2b91af">VisualTreeHelper</font><font size="2">.GetParent(originalSource);Â<br />
Â Â Â Â  }<br />
Â Â Â Â Â Â <font color="#008000"> //if it didn&#8217;t find a ListViewItem anywhere in the hierarch, it&#8217;s because the user<br />
Â Â Â Â Â  //didn&#8217;t click on one.Â Therefore, if theÂ variable isn&#8217;t null, run the code</font><br />
Â Â Â Â Â  <font size="2" color="#0000ff">if</font><font size="2"> (originalSource != </font><font size="2" color="#0000ff">null</font><font size="2">)<br />
Â Â Â Â Â  </font></font></font><font size="2" color="#000000"><font size="2"><font size="2">{<br />
Â Â Â Â Â Â Â Â  <font color="#008000">//code here<br />
</font>Â Â Â Â Â  }<br />
}</font></font></font>Â </p>
<p>That&#8217;s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/clicking-or-doubleclicking-on-an-item-in-a-listview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MIX 08 Sessions Now Online</title>
		<link>http://blogs.veracitysolutions.com/mix-08-sessions-now-online/</link>
		<comments>http://blogs.veracitysolutions.com/mix-08-sessions-now-online/#comments</comments>
		<pubDate>Mon, 10 Mar 2008 17:35:18 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Helpful Links]]></category>
		<category><![CDATA[MIX08]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/03/10/mix-08-sessions-now-online/</guid>
		<description><![CDATA[You can now check out all the MIX sessions, online.
Â I attended the following sessions:
Bringing Your Data to Life with Windows Presentation FoundationÂ - Anson Tsao
This is a great crash course to data binding in WPF.
Building Rich Internet Applications using Microsoft Silverlight Part 1Â - Mike Harsh and Joe Stegman
Building Rich Internet Application using Microsoft Silverlight Part 2 [...]]]></description>
			<content:encoded><![CDATA[<p>You can now check out all the MIX sessions, online.</p>
<p>Â I attended the following sessions:</p>
<p><a href="http://sessions.visitmix.com/?selectedSearch=CT05">Bringing Your Data to Life with Windows Presentation Foundation</a>Â - Anson Tsao</p>
<p>This is a great crash course to data binding in WPF.</p>
<p><a href="http://sessions.visitmix.com/?selectedSearch=CT01">Building Rich Internet Applications using Microsoft Silverlight Part 1</a>Â - Mike Harsh and Joe Stegman</p>
<p><a href="http://sessions.visitmix.com/?selectedSearch=CT02">Building Rich Internet Application using Microsoft Silverlight Part 2</a> &#8211; Mike Harsh</p>
<p>Good walkthroughÂ  on building a basic Silverlight 2.0 application. You can get <a href="http://blogs.msdn.com/mharsh/archive/2008/03/05/slides-and-demos-from-my-mix-08-talk.aspx">the files that accompany this talk </a>at Mike Harsh&#8217;s blog. While attending these sessions, Mike and Joe repeatedly reccomended&#8230;</p>
<p><a href="http://visitmix.com/blogs/2008Sessions/T20/">Creating Rich Dynamic User Interfaces with Silverlight 2 Controls</a> &#8211; Karen Corby</p>
<p>This was possibly the most valuable session I attended. Karen Corby walks us through how to create custom controls in Silverlight. The result is mind-blowingly powerful&#8230; and it seemed not to difficult. I hesitate on saying that simply because I haven&#8217;t done it myself yet. <img src='http://blogs.veracitysolutions.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  I&#8217;m going to go back over it and walk myself through the whole thing with <a href="http://scorbs.com/2008/03/09/mix08-creating-rich-dynamic-user-interfaces-with-silverlight-2-controls/">the source code that she has posted.</a></p>
<p><a href="http://sessions.visitmix.com/?selectedSearch=BC01">Nerd + Art : 10 Code Snippets to Empower Your Inner Artist</a> &#8211; Nathan Dunlap and Robby Ingebretsen</p>
<p>Two of the guys from Identity Mine walk through some great code snippets that allow designers a little more freedom to do the work they need to do. You can get the <a href="http://www.blendables.com/files/folders/nerd_43_art/entry387.aspx">Code Snippet Visual Studio 2008 installer file </a>and some of the <a href="http://www.blendables.com/files/folders/nerd_43_art/entry388.aspx">samples used in the talk </a>from the Identity Mine website.</p>
<p><a href="http://sessions.visitmix.com/?selectedSearch=T17">Developing Applications with Microsoft VirtualEarth</a>Â - Chris Pendleton</p>
<p>Christ Pendleton walked us through integrating VirtualEarth into Internet applications. PrettyÂ cool, although I&#8217;m not sure how much better thanÂ Google&#8217;s Maps/EarthÂ API this is. It&#8217;s been a while since I&#8217;ve played withÂ GoogleÂ Maps, but I remember it being much easier than I thought it would be. Keep an eye on <a href="http://blogs.msdn.com/mappoint_b2b/">Chris&#8217; blog</a>, where he&#8217;ll be posting the code for the lab shortly (I&#8217;m told).</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/mix-08-sessions-now-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Special Leap Day Link-O-Rama</title>
		<link>http://blogs.veracitysolutions.com/special-leap-day-link-o-rama/</link>
		<comments>http://blogs.veracitysolutions.com/special-leap-day-link-o-rama/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 15:50:40 +0000</pubDate>
		<dc:creator>Matthias Shapiro</dc:creator>
				<category><![CDATA[Helpful Links]]></category>
		<category><![CDATA[.Net 3.5]]></category>
		<category><![CDATA[Bea Costa]]></category>
		<category><![CDATA[David Kelly]]></category>
		<category><![CDATA[Josh Smith]]></category>
		<category><![CDATA[Observable Collection]]></category>
		<category><![CDATA[Scott Guthrie]]></category>
		<category><![CDATA[Silverlight 2.0]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.designerwpf.com/2008/02/29/special-leap-day-link-o-rama/</guid>
		<description><![CDATA[My brain is out of town while I&#8217;m working on our MIX Show Off Entry. In the meantime, I need to post some links so that I don&#8217;t forget them. I suppose you can use them too, if you want:

Overriding (or adding to) default event handlers
Custom Searching Through an Observable Collection
More on filtering through an [...]]]></description>
			<content:encoded><![CDATA[<p>My brain is out of town while I&#8217;m working on our MIX Show Off Entry. In the meantime, I need to post some links so that I don&#8217;t forget them. I suppose you can use them too, if you want:</p>
<ul>
<li><a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">Overriding (or adding to) default event handlers</a></li>
<li><a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">Custom Searching Through an Observable Collection</a></li>
<li><a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">More on filtering through an observable collection</a></li>
<li><a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">Scott Gu&#8217;s .Net 3.5 Client Product Roadmap</a> &#8211; They&#8217;re adding GridViews! And DatePickers! And Ribbons!</li>
<li>David Kelly on <a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">Using the Silverlight 2.0 XAML Grid Element</a></li>
<li>David Kelly on <a href="http://hackingsilverlight.blogspot.com/2008/02/using-silverlight-20-xaml-stackpanel.html">Using the Silverlight 2.0 XAML Stackpanel Element</a></li>
<li>Bea Costa&#8217;s <a href="http://www.beacosta.com/blog/?p=53">Monster Post on Dragging and Dropping DataBound Elements</a></li>
<li>Josh Smith says that <a href="http://joshsmithonwpf.wordpress.com/2008/02/18/the-importance-of-learning-expression-blend/">designers should be learning Blend because it&#8217;s freaking awesome</a>. Designers respond that, while he&#8217;s not wrong, there are bloody no good books or blogs on the topic.</li>
<li>Older post on <a href="http://learnwpf.com///Posts/Post.aspx?postId=56b750d2-25fe-419a-aaec-5854a04ed095">making a glossy look for WPF applications</a>.</li>
<li>Scott Gu&#8217;s <a href="http://weblogs.asp.net/scottgu/archive/2008/02/28/first-look-at-using-expression-blend-with-silverlight-2.aspx">Monster Post on Silverlight 2.0 and Blend</a>.</li>
</ul>
<p>You&#8217;ll notice that there is a little bit of focus on Silverlight 2.0 here&#8230; That&#8217;s because it&#8217;s awesome. Keep watching, I&#8217;ll start blogging on it as I get into it more and more.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.veracitysolutions.com/special-leap-day-link-o-rama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
