gpt4 book ai didi

WPF 按钮单击路由事件

转载 作者:行者123 更新时间:2023-12-04 19:41:44 26 4
gpt4 key购买 nike

尝试从 xaml 执行按钮 clcik 事件时出现以下错误

<Button x:Name="myButton" Content="Surface History"                    
HorizontalAlignment="Right">
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="MyText"
Storyboard.TargetProperty="Text">
<DiscreteObjectKeyFrame KeyTime="0:0:0" Value="Hello" />
</ObjectAnimationUsingKeyFrames>

</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
<TextBox Name="MyText" Text="Hi"/>

Text Storyboard.TargetProperty 路径包含非动画属性 Text

最佳答案

文本属性是非动画依赖属性。在为 Text 创建依赖属性时,UIMetaData IsAnimationProhibited 属性设置为 true,这会禁止 Text 属性设置动画。

所以 Text 属性不能被动画化。您需要手动设置 Timer 中的文本才能获得此行为。

关于WPF 按钮单击路由事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12833041/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com