gpt4 book ai didi

windows-phone-7 - WP7 - 显示隐藏应用程序栏

转载 作者:行者123 更新时间:2023-12-04 07:09:51 30 4
gpt4 key购买 nike

在许多 Windows Phone 7 应用程序中,应用程序栏默认隐藏,当您按住屏幕时,应用程序栏就会显示出来。由于许多 WP7 应用程序都有这种行为,我想知道 ApplicationBar 是否内置了对这种行为的支持,我该如何使用它?

最佳答案

您可以在 toolkit 中使用 GestureService检测 Hold 事件。

例如。
如果您在页面上有此 xaml:

<TextBlock TextWrapping="Wrap" Text="lorem ipsum ...">
<toolkit:GestureService.GestureListener>
<toolkit:GestureListener Hold="TapAndHold" />
</toolkit:GestureService.GestureListener>
</TextBlock>

以及事件处理程序的以下内容:

private void TapAndHold(object sender, GestureEventArgs e)
{
this.ApplicationBar.IsVisible = !this.ApplicationBar.IsVisible;
}

然后按住文本 block 上的任意位置将切换 ApplicationBar 的显示。

如果您想要在用户点击并按住页面上的任意位置时进行切换,那么您可以将手势监听器附加到页面的根对象。例如

<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<toolkit:GestureService.GestureListener>
<toolkit:GestureListener Hold="TapAndHold" />
</toolkit:GestureService.GestureListener>

关于windows-phone-7 - WP7 - 显示隐藏应用程序栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4688427/

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