WPF 控件之间的依赖关系

发布于 2024-12-06 20:31:13 字数 179 浏览 0 评论 0原文

我有 3 个文本框,它们的可见性取决于复选框。我想在所有文本框上设置 IsEnabled = false,当 checkbox.IsChecked = false 时设置 IsEnabled = true,当 IsChecked=true 时设置 IsEnabled = true。如何在 XAML 中实现这种依赖关系?

谢谢。

I have 3 textboxes their visibility depends on checkbox. I want to set IsEnabled = false on all textboxes, when checkbox.IsChecked = false and IsEnabled = true when IsChecked=true. How can I achieve this dependency in XAML?

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

偏爱自由 2024-12-13 20:31:13

您可以在命名元素之间进行绑定,并且只要绑定到依赖项属性,绑定就会反映任何更改

<TextBox IsEnabled="{Binding ElementName=SomeCheckBox, Path=IsChecked}" />

you can bind between named elements, and as long as you are binding to dependency properties, the binding will reflect any changes

<TextBox IsEnabled="{Binding ElementName=SomeCheckBox, Path=IsChecked}" />
萌无敌 2024-12-13 20:31:13
<StackPanel>
    <CheckBox Name="Checker" />

    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
</StackPanel>
<StackPanel>
    <CheckBox Name="Checker" />

    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
    <TextBox IsEnabled="{Binding ElementName=Checker, Path=IsChecked}" />
</StackPanel>
水晶透心 2024-12-13 20:31:13

IsEnabled 属性绑定到 CheckBox 上的 IsChecked 属性。

<TextBox IsEnabled="{Binding ElementName=NameOfCheckBox, Path=IsChecked}" />

如果您的目标是按照您的问题建议将该 bool 值与 Visibility 联系起来,那么您还需要利用转换器,例如 BooleanToVisibilityConverter

<TextBox Visibility="{Binding IsChecked, ElementName=NameOfCheckBox, Converter={StaticResource BoolToVisConverter}}" />

Bind the IsEnabled property to the IsChecked property on the CheckBox.

<TextBox IsEnabled="{Binding ElementName=NameOfCheckBox, Path=IsChecked}" />

If your goal is to then tie that bool value to Visibility as your question suggests, you would then need to also leverage a converter, such as the BooleanToVisibilityConverter.

<TextBox Visibility="{Binding IsChecked, ElementName=NameOfCheckBox, Converter={StaticResource BoolToVisConverter}}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文