gpt4 book ai didi

xaml - 始终在 RTXAML 中的翻页 View 控件上显示导航箭头

转载 作者:行者123 更新时间:2023-12-02 01:57:24 24 4
gpt4 key购买 nike

我正在为 Windows 8 商店应用程序使用 XAML FlipView 控件。

当我使用鼠标并且鼠标悬停在 FlipView 控件上时,会显示上一个/下一个导航按钮。

但是,如果我不使用鼠标而是使用触摸,导航按钮就会隐藏。

我希望导航按钮始终可见。我该怎么做?

我查看了控件模板,但看不到其中设置导航按钮可见性的任何内容。

最佳答案

尝试 dynamically hide/show the buttons .

private void Show(object sender, RoutedEventArgs e)
{
ButtonShow(fv, "PreviousButtonHorizontal");
ButtonShow(fv, "NextButtonHorizontal");
ButtonShow(fv, "PreviousButtonVertical");
ButtonShow(fv, "NextButtonVertical");
}
private void Hide(object sender, RoutedEventArgs e)
{
ButtonHide(fv, "PreviousButtonHorizontal");
ButtonHide(fv, "NextButtonHorizontal");
ButtonHide(fv, "PreviousButtonVertical");
ButtonHide(fv, "NextButtonVertical");
}
private void ButtonHide(FlipView f, string name)
{
Button b;
b = FindVisualChild<Button>(f, name);
b.Opacity = 0.0;
b.IsHitTestVisible = false;
}
private void ButtonShow(FlipView f, string name)
{
Button b;
b = FindVisualChild<Button>(f, name);
b.Opacity = 1.0;
b.IsHitTestVisible = true;
}
private childItemType FindVisualChild<childItemType>(DependencyObject obj, string name) where childItemType : FrameworkElement
{
// Exec
for (int i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
{
DependencyObject child = VisualTreeHelper.GetChild(obj, i);
if (child is childItemType && ((FrameworkElement)child).Name == name)
return (childItemType)child;
else
{
childItemType childOfChild = FindVisualChild<childItemType>(child, name);
if (childOfChild != null)
return childOfChild;
}
}
return null;
}

关于xaml - 始终在 RTXAML 中的翻页 View 控件上显示导航箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19177397/

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