我想檢索在組合框中選擇的字符串值并將其轉(zhuǎn)換為整數(shù),但是 SelectedItem 方法總是返回對(duì)象的名稱。其他帖子建議使用 SelectedItem 的 Content 屬性,但在使用 .net 4.6.1 的 vs2017 中我無(wú)法使用它。有人可以幫助我在不解析字符串的情況下獲取值嗎?這是 Xaml,后跟 cs 文件:<ComboBox x:Name="Combo_BaudRate" SelectedValuePath="Content" HorizontalAlignment="Left" VerticalAlignment="Top" Width="120" Margin="112,81,0,0" SelectionChanged="ComboBox_SelectionChanged" IsReadOnly="True" > <ComboBoxItem Content="1200" /> <ComboBoxItem Content="2400" /> <ComboBoxItem Content="4800" /> <ComboBoxItem Content="9600" /> <ComboBoxItem Content="38400" /></ComboBox>private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e){ Selected_Port_Baudrate = Combo_BaudRate.SelectedItem.ToString(); }
組合框 tostring() 返回對(duì)象而不是值
呼啦一陣風(fēng)
2022-12-24 14:31:21