在 WPF 中选中/取消选中 StoryBoard 中的 ToggleButton

发布于 2024-08-09 07:10:44 字数 639 浏览 3 评论 0原文

我有一个展开/折叠某些 StackPanel 的动画,在窗口中,有一些 ToggleButton 在折叠 StackPanel 时必须取消选中。我有这样的动画:

<Storyboard x:Key="cmdUnchecked">
   <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="StackPanel1" Storyboard.TargetProperty="(FrameworkElement.Height)">
      <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="37"/>
   </DoubleAnimationUsingKeyFrames>
</Storyboard>

这隐藏了 StackPanel,但我需要从其他事件中取消选中 ToggleButton。

是否可以取消选中此 StoryBoard 中的 ToggleButton

如果是这样,我是否需要验证它是否已选中/未选中?

I have an animation that expand / collapse some StackPanels, in the window there are some ToggleButtons that must be unchecked when the StackPanel is collapsed. I have the animation like this:

<Storyboard x:Key="cmdUnchecked">
   <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="StackPanel1" Storyboard.TargetProperty="(FrameworkElement.Height)">
      <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="37"/>
   </DoubleAnimationUsingKeyFrames>
</Storyboard>

This hides the StackPanel, but I need to uncheck the ToggleButton from other events.

Is it possible to uncheck the ToggleButton From this StoryBoard?

An if so, do I need to verify if it's already checked / unchecked?

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

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

发布评论

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

评论(2

浊酒尽余欢 2024-08-16 07:10:44

您可以像这样使用 ObjectAnimationUsingKeyFrames:

<ObjectAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="YourToggleButton" Storyboard.TargetProperty="(ToggleButton.IsChecked)">
    <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="False" />
</ObjectAnimationUsingKeyFrames>

您不需要检查它是否已被检查,因为当它已经为 false 时将其设置为 false 应该不会有副作用。

You can use an ObjectAnimationUsingKeyFrames like so:

<ObjectAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="YourToggleButton" Storyboard.TargetProperty="(ToggleButton.IsChecked)">
    <DiscreteObjectKeyFrame KeyTime="0:0:0" Value="False" />
</ObjectAnimationUsingKeyFrames>

You should not need to check if it's already checked since setting it to false when it's already false should have no side effects.

三生殊途 2024-08-16 07:10:44

您应该使用 BooleanAnimations 来为布尔值设置动画:

     <BooleanAnimationUsingKeyFrames Storyboard.TargetName="YourToggleButton" Storyboard.TargetProperty="IsChecked">
           <DiscreteBooleanKeyFrame Value="False" KeyTime="0:0:0"/>
     </BooleanAnimationUsingKeyFrames>

您可以将 DoubleAnimations 放在 ToggleButton.Triggers 中作为 EventTriggers 上 < code>RoatedEvents CheckedUnckecked,然后只需使用 BooleanAnimationToggleButton 选中/取消选中切换按钮> 将自动运行双动画来改变 stackpanel 的高度

You should use BooleanAnimations to animate Boolean values:

     <BooleanAnimationUsingKeyFrames Storyboard.TargetName="YourToggleButton" Storyboard.TargetProperty="IsChecked">
           <DiscreteBooleanKeyFrame Value="False" KeyTime="0:0:0"/>
     </BooleanAnimationUsingKeyFrames>

You can put your DoubleAnimations in ToggleButton.Triggers as EventTriggers on RoutedEvents Checked and Unckecked, then just check/unckeck the toggle button with BooleanAnimation and ToggleButton will automatically run the double animations to change height of stackpanel

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文