我正在使用wpf c#app,我有一个组合框,它被绑定到列表框中所选项目的xml值。这是组合框的代码:
<ComboBox Margin="164.301,268.036,8,0" VerticalAlignment="Top" ToolTip="Cue trigger" DataContext="{Binding SelectedItem, ElementName=listBox_Copy}" SelectedValue="{Binding XPath=Type}" Style="{DynamicResource CUE_StyleCombo}" SelectedValuePath="Content" SelectionChanged="Save">
<ComboBoxItem Content="go"/>
<ComboBoxItem Content="follow direct"/>
<ComboBoxItem Content="follow after"/>
</ComboBox>
现在启动程序时,我单击列表框中的项目,组合框绑定的值设置为零!仅在第一次点击时。我该如何解决这个问题?
精化:
// On startup :
<Trigger>go</Trigger>
// Clicked a random item within the listbox
<Trigger></Trigger>