gpt4 book ai didi

c# - ContentPage 背景的 Xamarin Xaml 样式

转载 作者:太空宇宙 更新时间:2023-11-03 23:25:56 28 4
gpt4 key购买 nike

最近在 Xamarin 工作,如果我尝试为 ContentPage 设置样式,似乎什么也没有发生

App.xaml 的 ResourceDictionary 中的 Xaml:

<Style TargetType="ContentPage">
<Setter Property="BackgroundColor" Value="#f8f8f8"/>
</Style>

我知道正在读取 app.xaml 样式。我有一个已在全局范围内应用的按钮样式。但我似乎无法影响 ContentPage 上的任何更改。没有报告错误。

如何全局设置背景颜色?

我读到这可能是一个错误,但那是一年前的事了。如果它仍然是一个错误,是否有解决方法?

最佳答案

App.xaml 中的以下代码适合我:

<Style TargetType="ContentPage" ApplyToDerivedTypes="True">
<Setter Property="BackgroundColor" Value="Lime" />
</Style>

注意:

  • 您不应在 Style 中使用属性 x:Key
  • 您应该添加 ApplyToDerivedTypes="True"

我在 https://putridparrot.com/blog/styles-in-xamarin-forms/ 找到了解决方案

关于c# - ContentPage 背景的 Xamarin Xaml 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33811028/

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