Windows Phone 7_EventTrigger

发布于 2024-10-17 11:47:58 字数 984 浏览 1 评论 0原文

我正在使用 Windows Phone 7。当我使用 TextBlock 的 EventTrigger 时,如下所示:

<TextBlock Foreground="White" FontWeight="Bold" x:Name="txt" Text="199" Height="100">
  <TextBlock.Triggers> 
    <EventTrigger RoutedEvent="TextBlock.MouseMove" > 
      <BeginStoryboard>
        <Storyboard>                                          
          <DoubleAnimation AutoReverse="True" Duration="0:0:1"
                           From="1.0" RepeatBehavior="Forever"
                           Storyboard.TargetName="txt"
                           Storyboard.TargetProperty="Opacity"
                           To="0.0"/>  
        </Storyboard> 
      </BeginStoryboard>                             
    </EventTrigger>                        
  </TextBlock.Triggers>
</TextBlock>

如果我有 RoutedEvent="TextBlock.Loaded" 那没问题,但另一个事件(MouseMove、Click...)它将失败并显示错误“属性 TextBlock.MouseMove 值超出范围”。 有什么问题吗?
多谢。

I'm working with Windows Phone 7. When I use the EventTrigger for TextBlock as below:

<TextBlock Foreground="White" FontWeight="Bold" x:Name="txt" Text="199" Height="100">
  <TextBlock.Triggers> 
    <EventTrigger RoutedEvent="TextBlock.MouseMove" > 
      <BeginStoryboard>
        <Storyboard>                                          
          <DoubleAnimation AutoReverse="True" Duration="0:0:1"
                           From="1.0" RepeatBehavior="Forever"
                           Storyboard.TargetName="txt"
                           Storyboard.TargetProperty="Opacity"
                           To="0.0"/>  
        </Storyboard> 
      </BeginStoryboard>                             
    </EventTrigger>                        
  </TextBlock.Triggers>
</TextBlock>

If I have RoutedEvent="TextBlock.Loaded" that is no problem, but another event(MouseMove, Click...) it will fail with the error "Attribute TextBlock.MouseMove value is out of range".
What is the problem?
Thanks a lot.

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

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

发布评论

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

评论(1

聊慰 2024-10-24 11:47:58

首先,“MouseMove”和“Click”不适用于手机,因为没有鼠标!

其次,您可能需要查看文档中的注释 MSDN

Silverlight 中唯一支持的值是 Loaded/FrameworkElement.LoadedEvent。

Firstly "MouseMove" and "Click" don't apply on a phone as there is no mouse!

Secondly, you may want to check the remarks in the docs on MSDN:

The only supported value in Silverlight is Loaded/FrameworkElement.LoadedEvent.

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