The Full Stack, Part 1 - Building the Admin Site with ASP.NET MVC 3, NuGet and EF Code…

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.
The download link for the Windows Phone Developer Tools is below its about 354 MB
https://www.microsoft.com/expression/windowsphone/Default.aspx
Another link to get you started...
https://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(); } } }