私は WPF と XAML プログラミングの初心者です。そして、私の英語はあまり上手ではありません。そのために残念!
これが私の問題です。カスタム チェック ボックスが必要です。マウスが上にあり、カーソルがヘルプカーソルに変わるときにのみ有効にする必要があります。
それはうまくいきます!チェックボックスをクリックすると、チェックボックスが に変わり、チェックボックス.ischeckd = true
に小さな矢印が表示されます。チェックボックスをもう一度クリックすると、.ischecked
プロパティがチェックボックスfalse
の小さな矢印に変わります。ここまでは順調ですね!しかし、プログラムで .ischeckd 値を設定しても、チェックボックスの小さな矢印は変更されません。したがって、プログラムのユーザーは、.ischecked プロパティが false であっても、チェックボックスが「アクティブ」であると考えます。私の問題を理解していただければ幸いです... 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" />
私の問題を理解してください!答えてくれてありがとう、リューディガー