我有以下情况:在 xaml 中,我从数据库中获取值并填充组合框..如果组合框中的选定项目具有值“x”我想从工作窗口中隐藏一些元素..thx 为您提供提示
<TextBlock Text="XYZ:"/>
<ComboBox ItemsSource="{Binding DataContext.KeyLists.XYZ,
RelativeSource={RelativeSource AncestorType={x:Type UserControl}}}"
SelectedValuePath="XYZId"
SelectedValue="{Binding XYZId, Mode=TwoWay}"
DisplayMemberPath="Name" />