0

我是 WPF 和 XAML 编程的初学者。而且我的英语不是很好。对不起!

这是我的问题。我想要一个自定义复选框。只有当鼠标悬停并且光标应更改为帮助光标时才应启用它。

这很好用!当我单击复选框时,复选框变为.ischeckd = true并在复选框中显示小箭头。当我再次单击复选框时,.ischecked属性更改为复选框中false的小箭头消失了。到现在为止还挺好!但是,当我以编程方式设置 .ischeckd 值时,它不会更改复选框中的小箭头。因此,即使 .ischecked 属性为假,程序的用户仍认为复选框是“活动的”。希望您理解我的问题...这是 XAML 代码:

</Style>
    <Storyboard x:Key="StoryboardCheckBox"/>
    <Style x:Key="CheckBoxStyle1" TargetType="{x:Type CheckBox}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type CheckBox}">
                    <Grid Margin="0,0,42,0">
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="CommonStates">
                                <VisualState x:Name="Normal"/>
                                <VisualState x:Name="MouseOver">
                                    <Storyboard>
                                        <BooleanAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.IsEnabled)" Storyboard.TargetName="checkBox">
                                            <DiscreteBooleanKeyFrame KeyTime="0" Value="True"/>
                                        </BooleanAnimationUsingKeyFrames>
                                    </Storyboard>
                                </VisualState>
                                <VisualState x:Name="Pressed"/>
                                <VisualState x:Name="Disabled"/>
                            </VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <CheckBox x:Name="checkBox" Content="Gutschrift" FontSize="13.333" IsEnabled="False" Cursor="Help" Margin="0,0,4.937,0"/>
                        <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Content="" Margin="78.063,9.723,0,0"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

...一些标签和按钮以及其他东西

<CheckBox Content="CheckBox" HorizontalAlignment="Left" Height="23" Margin="29,0,0,44" Grid.Row="1" Style="{DynamicResource CheckBoxStyle1}" VerticalAlignment="Bottom" Width="125" Name="CheckBoxGutschrift" IsChecked="False" DataContext="{Binding}" Checked="CheckBoxGutschrift_Checked" Unchecked="CheckBoxGutschrift_Unchecked" ClickMode="Press" IsTabStop="False" />

希望你能理解我的问题!非常感谢您的回答,Ruediger

4

1 回答 1

1

您忘记IsChecked在控件模板中绑定内部复选框的属性:

<CheckBox x:Name="checkBox" IsChecked="{TemplateBinding IsChecked}" ...
于 2013-01-24T08:37:08.177 回答