gpt4 book ai didi

c# - WPF 绑定(bind)可见性

转载 作者:太空宇宙 更新时间:2023-11-03 21:08:05 25 4
gpt4 key购买 nike

我的标签应该在 RadioButton FirstSecond IsChecked=true 时可见,在 Third 时折叠或 Fourth IsChecked=false。将按钮的名称传递给转换器并在转换器中决定它应该折叠还是可见,这只是一种方法吗?

<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Orientation="Vertical">
<RadioButton Content="Visible" x:Name="First"></RadioButton>
<RadioButton Content="Visible" x:Name="Second"></RadioButton>
<RadioButton Content="Collapsed" x:Name="Third"/>
<RadioButton Content="Collapsed" x:Name="Fourth"></RadioButton>
</StackPanel>
<Label Content="Test" Grid.Row="1"></Label>
</Grid>

最佳答案

您可以实现 IMultiValueConverter 并使用它将 Visibility 绑定(bind)到多个值。你可以找到例子 here

关于c# - WPF 绑定(bind)可见性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39854389/

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