将集合绑定到WPF ComboBox并禁用某些项目

时间:2011-12-25 06:44:50

标签: xaml binding

<Window.Resources>
    <DataTemplate x:Key="IpInfoTemplate">
        <DockPanel>
            <TextBlock Text="{Binding Path=InterfaceName}" DockPanel.Dock="Left" Margin="0,0,10,0" />
            <TextBlock Text="{Binding Path=Address}"/>
        </DockPanel>
    </DataTemplate>
</Window.Resources>

<ComboBox ItemTemplate="{StaticResource IpInfoTemplate}"
      ItemsSource="{Binding Source={x:Static WpfApplication1:App.IpInfoList}, Mode=OneWay}">    
</ComboBox>

此代码已将App.IpInfoList绑定到ComboBox。

IpInfo类有一个bool属性Enabled。要求是在对应ComboBoxItem.IsEnabled=false时设置IpInfo.Enable==false(以便用户无法选择)。

我希望所有代码都是用XAML编写的。

1 个答案:

答案 0 :(得分:24)

<ComboBox ItemTemplate="{StaticResource IpInfoTemplate}" 
          ItemsSource="{Binding Source={x:Static WpfApplication1:App.IpInfoList}, Mode=OneWay}">
    <ComboBox.ItemContainerStyle>
        <Style TargetType="{x:Type ComboBoxItem}">
            <Setter Property="IsEnabled" Value="{Binding Enabled}"/>
        </Style>
    </ComboBox.ItemContainerStyle>
</ComboBox>

它会将ComboBoxItem.IsEnabled属性绑定到您的IpInfo.Enabled属性