The Full Stack, Part 2: Setting up the UI for our Windows Phone client
- Posted: Nov 02, 2010 at 9:37 AM
- 42,786 Views
- 4 Comments
Download
How do I download the videos?
- To download, right click the file type you would like and pick “Save target as…” or “Save link as…”
Why should I download videos from Channel9?
- It's an easy way to save the videos you like locally.
- You can save the videos in order to watch them offline.
- If all you want is to hear the audio, you can download the MP3!
Which version should I choose?
- If you want to view the video on your PC, Xbox or Media Center, download the High Quality WMV file (this is the highest quality version we have available).
- If you'd like a lower bitrate version, to reduce the download time or cost, then choose the Medium Quality WMV file.
- If you have a Zune, WP7, iPhone, iPad, or iPod device, choose the low or medium MP4 file.
- If you just want to hear the audio of the video, choose the MP3 file.
Right click “Save as…”
- High Quality WMV (PC, Xbox, MCE)
- MP3 (Audio only)
- MP4 (iPod, Zune HD)
- Mid Quality WMV (Lo-band, Mobile)
In Part 2 of The Full Stack, Jesse starts building out a Windows Phone user interface using Expression Blend 4. As Jesse builds out the interface, he and Jon discuss Expression Blend basics, Windows Phone tools, Visual State Manager, Behaviors, and more.
Comments Closed
Comments have been closed since this content was published more than 30 days ago, but if you'd like to continue the conversation,
please create a new thread in our Forums,
or
Contact Us and let us know.
Follow the Discussion
The download link for the Windows Phone Developer Tools is below its about 354 MB
http://www.microsoft.com/expression/windowsphone/Default.aspx
Another link to get you started...
http://create.msdn.com/en-us/home/getting_started
Alan
Great work on keeping the demo interesting to watch. One suggestion would be to improve the audio quality a little. It sounds like it's very low bitrate. I watched the mp4 version.
Hi!
I've watched the first part of this and it was great. Especially the Code-First part for EF which I did not know. I was looking forward to seeing Part 2 after that
And this part is also great up to about minute 37. This is where I got completely lost. After the blurry animation you jumped to a whole different point in the process. How did you get all those files and folders in visual studio? All I've got is the SampleData folder 2 .xaml files with code-behind and 3 png images...
I should probably say that I'm a complete newbie to WP7 programming. This was my first contact into it and I actually had to pause the video to install all the necessary tools so I can follow you.
It would also be great if you'd include some source code of the stuff you're doing.
To set the text on the toggle button...
namespace WhoIsThatPhoneDemo { public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); Loaded +=new RoutedEventHandler(DescriptorsView_Loaded); // Set Toggle Button text @ startup HairLengthPopupToggle.Content = HairLength.Text; } public void DescriptorsView_Loaded(Object sender, RoutedEventArgs e) { HairLengthLB.SelectionChanged += new SelectionChangedEventHandler(HairLengthLB_SelectionChanged); } public void HairLengthLB_SelectionChanged(Object sender, SelectionChangedEventArgs e) { HairLength.Text = (HairLengthLB.SelectedItem as Expression.Blend.SampleData.HairLengthSampleData.Item).Length.ToString(); // Set ToggleButton text on ListBox change event HairLengthPopupToggle.Content = (HairLengthLB.SelectedItem as Expression.Blend.SampleData.HairLengthSampleData.Item).Length.ToString(); } } }Remove this comment
Remove this thread
close