gpt4 book ai didi

xaml - 将集合绑定(bind)到 WPF ComboBox 并禁用某些项目

转载 作者:行者123 更新时间:2023-12-04 04:50:28 24 4
gpt4 key购买 nike

<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>

此代码已绑定(bind) App.IpInfoList到组合框。
IpInfo类具有 bool 属性 Enabled .要求是设置 ComboBoxItem.IsEnabled=false (使用户无法选择)当对应 IpInfo.Enable==false .

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

最佳答案

<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>

它绑定(bind) ComboBoxItem.IsEnabled属性(property)到您的 IpInfo.Enabled属性(property)

关于xaml - 将集合绑定(bind)到 WPF ComboBox 并禁用某些项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8628554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com