的價值在我的.xaml文件,我有我的組合框,如下:我如何能實現我的ComboBox_SelectionChanged事件,以便我能得到comboBoxItem的內容C#UWP怎麼去改變ComboBoxItem
<ComboBox Name="CLengthCombo" SelectionChanged="ComboBox_SelectionChanged"> <ComboBoxItem Content="24"/> <ComboBoxItem Content="25"/> <ComboBoxItem Content="26" IsSelected="True"/> <ComboBoxItem Content="27"/> </ComboBox>
這應用程序運行時用戶是否更改?在這種情況下,SelectionChanged事件是否正確使用?下面不起作用:
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { string chosenItem = CLengthCombo.PlaceholderText; }
在此先感謝您的幫助!
感謝Karoui!它現在的作品:) – azad
你可以檢查它作爲有效的答案,然後:) –