我在数据网格中有组合框(mysql(web)中的源)我如何在选择中获得价值?
<ComboBox SelectionChanged="status_SelectionChanged".........
C#
private void status_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
this here
}
如何???
以及如何在另一列中获取值,但在这一行中?
column_one column_two
value1 value2
更改为column two
,如何获得第一列?
更新: 我的物品
<ComboBox.Items>
<ComboBoxItem>New</ComboBoxItem>
<ComboBoxItem>Cancel</ComboBoxItem>
</ComboBox.Items>