一个控件的WPF已启用绑定属性到CheckBox
本文关键字:启用 绑定 属性 CheckBox WPF 一个 控件 | 更新日期: 2023-09-27 18:26:17
我正在尝试使用以下XAML将控件的IsEnabled
属性绑定到CheckBox
的IsChecked
属性,因此该控件将根据CheckBox
状态启用或禁用。
<Setter Property="IsEnabled" Value="{Binding IsChecked, ElementName=aCheckBox, UpdateSourceTrigger=PropertyChanged}" />
它不起作用。怎么了?
编辑:谢谢你的评论!下面来自style.xaml,现在基于@Ivan的评论。当禁用(从这里获取)时,文本块被设置为"灰色"
<Style x:Key="printCkBox" TargetType="CheckBox">
<Setter Property="LayoutTransform">
<Setter.Value>
<ScaleTransform ScaleX="2" ScaleY="2"/>
</Setter.Value>
</Setter>
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<Style x:Key="fileInfoTxtBlkBase" TargetType="TextBlock">
<Setter Property="TextWrapping" Value="NoWrap"/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="Padding" Value="2"/>
<Setter Property="IsEnabled" Value="{Binding ElementName=printCkBox, Path=IsChecked, NotifyOnSourceUpdated=True}"/>
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Foreground" Value="{StaticResource {x:Static SystemColors.GrayTextBrushKey}}"/>
</Trigger>
</Style.Triggers>
</Style>
<Style x:Key="filenameTxtBlk" BasedOn="{StaticResource fileInfoTxtBlkBase}" TargetType="TextBlock">
<Setter Property="TextAlignment" Value="Left"/>
</Style>
虽然这是一个老问题,但这里仍然是标题中原始问题的答案,对于其他人来说,就像我一样在这里跌跌撞撞:
<DockPanel>
<CheckBox x:Name="CbxAgree" Content="Agreed" FontSize="21"
Background="Black" Foreground="Black"
VerticalAlignment="Center" Margin="8 4 16 4"
IsChecked="True" />
<Button VerticalAlignment="Stretch"
Background="White" Foreground="Black"
Content="Submit" FontSize="22"
IsEnabled="{Binding ElementName=CbxAgree, Path=IsChecked}"/>
</DockPanel>