wpf 中如果获取ComboBox中的文本值??
我是这么获取的
CB_记账类型.SelectedValue.ToString()
但是获取的值却是
System.Windows.Controls.ComboBoxItem: 现记,
“现记”才是我要获取的值,但是前面却有“System.Windows.Controls.ComboBoxItem:”这么多多余的,那么应该怎么写才是获取ComboBox中的文本值的正确方法呢???
[解决办法]
<ComboBox Margin="31,0,68,-66" VerticalAlignment="Bottom" Height="29" Grid.Row="1" DropDownClosed="ComboBox_DropDownClosed"> <ComboBox.Items> <ComboBoxItem>1111111111</ComboBoxItem> <ComboBoxItem>2222222222</ComboBoxItem> <ComboBoxItem>3333333333</ComboBoxItem> <ComboBoxItem>4444444444</ComboBoxItem> <ComboBoxItem>5555555555</ComboBoxItem> </ComboBox.Items> </ComboBox>