<?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 - Day 2 Homework Assignment Solution - Part 2</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/ch9/05a4/9ed88a3d-4a22-47d9-baed-9e17016905a4/day02HomeworkSolutionPart2_100_ch9.jpg</url>
		<title>Channel 9 - Day 2 Homework Assignment Solution - Part 2</title>
		<link></link>
	</image>
	<description> This video, (Part 2 in the two video sequence solving the Day 2 Homework Assignment) demonstrates the part of the homework assignment that tasked you with building a custom class including properties that you fill when a user submits the data. Also, you&#39;ll call a method on that new class to &amp;quot;save&amp;quot; the data. Again, please try to get as far as possible on your own BEFORE watching this video. Download the source code in c# Download the source code in VB.Net </description>
	<link></link>
	<language>en</language>
	<pubDate>Mon, 20 May 2013 09:36:38 GMT</pubDate>
	<lastBuildDate>Mon, 20 May 2013 09:36:38 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>Great solution videos bob. I got most of it done on my own except for how to get the information from the ListBox and to wipe it at the end, the rest went quite smoothly.</p><p>Cheers</p><p>posted by Mintydog</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634278687650000000</link>
		<pubDate>Mon, 13 Dec 2010 20:26:05 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634278687650000000</guid>
		<dc:creator>Mintydog</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>Amazing stuff Bob...thanks a lot Bob....I needed some help with the class declaration...but the UI development was straight forward...thanks to your previous videos....</p><p>posted by optimus</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634283933610000000</link>
		<pubDate>Sun, 19 Dec 2010 22:09:21 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634283933610000000</guid>
		<dc:creator>optimus</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>It took me a while to complete this assigment&nbsp;because one of our 'Sales' guy went rogue. I had to straighten out that issue first. </p><p>posted by petaganayr</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634314423490000000</link>
		<pubDate>Mon, 24 Jan 2011 05:05:49 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634314423490000000</guid>
		<dc:creator>petaganayr</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>Hey guys. If you want some help on how to scroll further on your page, here it is.</p><pre>On the main grid <pre class="brush: xml">Grid x:Name=&quot;ContentPanel&quot;</pre>, add this property: <pre class="brush: xml">Height=&quot;auto&quot;</pre>.</pre><pre>This means that no matter how many rows you make, the screen will resize to add those rows.</pre><pre>Also, you need to make the scrollviewer like Bob shown in one of his tutorials. Just change the height </pre><pre>property of the main grid to auto befor you add the scroll bar. Took me ages to figure that out :P</pre><pre><br></pre><pre><br></pre><p>posted by Jaguma</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634324525830000000</link>
		<pubDate>Fri, 04 Feb 2011 21:43:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634324525830000000</guid>
		<dc:creator>Jaguma</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>Just for the sake of discussion, as Bob said there are many ways to acheive the desired result - The differences I had to Bob's code were:</p><ul><li>I used a StackPanel in the grid for the radio buttons and made the StackPanel span multiple rows </li><li>I didn't put the class in a separate file - Will do that next time for sure! </li><li>I didn't use a nullable boolean for the Undercover property. Would that break it? </li><li>I didn't use trim() on the text field, I added that after watching the videos! </li><li>On the agency buttons I didn't use else for the last option, because the user could potentially select no option, and that should set the value to nothing (empty string) - I used else for that instead </li></ul><p>posted by WayneHoggett</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634386036300000000</link>
		<pubDate>Sun, 17 Apr 2011 02:20:30 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634386036300000000</guid>
		<dc:creator>WayneHoggett</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[bob u didnt write any thing on the body of the save method&#63;&#63;<p>posted by mohsin</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634420017170000000</link>
		<pubDate>Thu, 26 May 2011 10:15:17 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634420017170000000</guid>
		<dc:creator>mohsin</dc:creator>
	</item>
	<item>
		<title>Re: Day 2 Homework Assignment Solution - Part 2</title>
		<description>
			<![CDATA[ <p>Awesome videos. There were two hang-ups for me.</p><p><strong>1.</strong> I was tempted to use the StackPanel to name the ListBox in the UI &lt;lol&gt;</p><p><strong>2.</strong> Clearning the ListBox after we click/pressed our button.</p><p>Bob &amp; Clint...&nbsp;really this is great stuff. Anyone can learn from these videos. I 100% am&nbsp;sold on the lifetime subscription to LearnVisusalstudio.net!!!</p><p>posted by Mr_Smitty0</p>]]>
		</description>
		<link>http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634439564980000000</link>
		<pubDate>Sat, 18 Jun 2011 01:14:58 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Day-2-Homework-Assignment-Solution-Part-2#c634439564980000000</guid>
		<dc:creator>Mr_Smitty0</dc:creator>
	</item>
</channel>
</rss>