WP7如何更改应用程序栏中的省略号颜色?

发布于 2024-10-11 01:32:01 字数 174 浏览 5 评论 0原文

我有一个带有自定义颜色的应用程序栏,以匹配我们应用程序的页面颜色。我已经设法将图像和应用程序栏本身设置为我想要的颜色,但不是右上角的省略号。我已将背景颜色设置为白色,前景色设置为蓝色。在表达式混合中,看起来椭圆被设置为蓝色,但是当我运行应用程序时,它们是白色的(与应用程序栏背景的颜色相同)并且基本上不可见。有没有办法改变椭圆的颜色?

I have an app bar with custom colors to match the page color of our application. I have managed to get the images and app bar itself to the colors I want, but not the ellipses at the top right. I have set the background color to white and the foreground color to blue. In expression blend, it looks like the ellipses are set to blue, but when I run the app, they are white (same color as the app bar background) and basically invisible. Is there a way to change the color of the ellipses?

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

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

发布评论

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

评论(1

醉南桥 2024-10-18 01:32:01

不知道为什么它对您不起作用,但示例应用程序中的以下代码对我有用:

<shell:ApplicationBar IsVisible="True"
                      IsMenuEnabled="True" 
                      ForegroundColor="Orange"> 

我为 Windows Phone 创建了一个新的 PivotApplication 项目。在新页面中,我将 ForegroundColor 属性添加到应用程序栏并且它起作用了。

替代文字

Not sure why it does not work for you but following code in sample application worked for me:

<shell:ApplicationBar IsVisible="True"
                      IsMenuEnabled="True" 
                      ForegroundColor="Orange"> 

I created a new PivotApplication project for Windows Phone. In a new page, I added ForegroundColor property to application bar and it worked.

alt text

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