我目前正在学习windows phone应用程序开发。我有两个Combobox列表。基于在组合框中做出的选择,我需要在点击提交按钮时相应地打开页面。我怎么能用C#和xaml做到这一点?
答案 0 :(得分:0)
使用ComboBox中的SelectionChanged事件处理程序。每次在组合框中选择一个项目时它都会被触发。您可以使用此事件来保存导航所需的所选项目。
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
ComboBox cbx = (sender as ComboBox);
var item = cbx.SelectedItem; // Gives you the selected item
}