Hi I'm a designer, trying to learn blend and silverlight, basically what i'm trying to achieve is output the selected item from the comobox into a textBlock. Can any one point me in the right direction or show me some c# on how this is done. This is my current code:
private void GetSubmitBtn(object sender, System.Windows.RoutedEventArgs e)
{
this.Message.Text = "Hello there " + this.Firstname.Text + " " + this.Surname.Text + ". You come from " + this.Origin.SelectedItem.ToString();
}