Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Silverlight Input Controls - Day 2 - Part 12
May 26, 2011 at 4:45 AMHi, I just want to note that this:
string lisboxValue = (string)(((ListBoxItem)myListBox.SelectedItem).Content);
will work the same as:
ListBoxItem lbi = (ListBoxItem)myListBox.SelectedItem;
string lisboxValue = (string)lbi.Content;
Thank you sooooooo much