gpt4 book ai didi

xaml - 自定义 Windows 10 UWP 后退按钮

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

有没有什么办法可以自定义UWP App_Back按钮的背景颜色和大小?

最佳答案

有一种方法可以自定义标题栏。我认为这篇文章对你有帮助:
Easily manage the Title Bar in Windows 10 apps

例如,您可以使用 ApplicationView.GetForCurrentView().TitleBar property 编辑颜色:

var titleBar = ApplicationView.GetForCurrentView().TitleBar;
titleBar.ButtonBackgroundColor = Colors.Maroon;
titleBar.ButtonForegroundColor = Colors.Yellow;

或者您甚至可以通过此链接解决方案找到如何删除 Chrome 并使用后退按钮创建自己的 Chrome (有点复杂的方式)

这个想法是使用 CoreApplication class 设置应用程序“无 Chrome ”和代码如下:
CoreApplication.GetCurrentView().TitleBar.ExtendViewIntoTitleBar = true;

在此之后,您可以在 Window.SetTitleBar method 的帮助下创建 XAML 元素来代替标题栏。

关于xaml - 自定义 Windows 10 UWP 后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37072288/

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