gpt4 book ai didi

c# - 绑定(bind)到 ResourceDictionary 中的静态主题

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:47 33 4
gpt4 key购买 nike

我正在尝试为 WP8 应用程序创建自定义主题。不是内置的深色/浅色主题,而是自定义的白标主题。为了让它工作,我创建了一个静态类,例如:

public class Theme : DependencyObject
{
static Theme()
{
CurrentTheme = new DefaultAppTheme();
}

public static IAppTheme CurrentTheme { get; set; }
}

然后我可以通过首先在资源部分中包含一个引用来绑定(bind)到页面中的静态属性:

<pages:PhoneApplicationPage.Resources>
<ResourceDictionary>
<ui:Theme x:Key="Theme"/>
</ResourceDictionary>
</pages:PhoneApplicationPage.Resources>

最后:

<Rectangle Fill="{Binding Path=CurrentTheme.DarkIconBrush, Source={StaticResource Theme}, Mode=OneTime}">

到目前为止一切顺利。唯一剩下的就是在/Themes/Generic.xaml 文件中做同样的事情,但我一辈子都想不出怎么做。

我可以通过运行应用程序来验证上面的绑定(bind)是否有效。通过在 App ctor 中设置 Theme.CurrentTheme,我可以更改应用的主题。

如何在 Generic.xaml 中绑定(bind)到主题类的颜色属性?这是我尝试过的:

  1. 将资源部分添加到 Generic.xaml 中的 ResourceDictionary - 不起作用,因为该类不支持它

  2. 尝试在 Generic.xaml 中将其声明为变量(资源)并引用它,例如:

不确定这里的绑定(bind)语法是怎样的。

  1. 使用一些奇怪的附加属性绑定(bind)魔法来解决这个问题。

Generic.xaml 在 App 项目中,它在用户控件项目(库)中。否则我可以将它添加到 App 类的资源部分。

最佳答案

免责声明:我不是WP开发者,我是为普通桌面浏览器Silverlight开发的。

默认样式模板generic.xaml主题 协同工作的心智模型是以下(这也可能对您有用):

为了让我的(模板化的)自定义控件在整个应用程序中正常工作,框架必须能够找到默认模板。因此,这些模板的默认样式包含在 generic.xaml 中。心智模型:generic.xaml 与主题无关,它唯一关心的是为我的自定义类型提供模板(和默认设置),因此我的应用程序 UI 在技术上是可用的。

我的责任是我的默认模板实际绑定(bind)到并使用与控件外观相关的公共(public)依赖属性:Background、BorderBrush、BorderThickness、Foreground、Padding

也许我必须自己添加一个或两个属性以允许自定义我的控件:

[StyleTypedProperty( Property = "ToggleButtonStyle", StyleTargetType = typeof( ToggleButton ) )]
[StyleTypedProperty( Property = "DropDownBackgroundStyle", StyleTargetType = typeof( Border ) )]
public class DropDownButton : Control
{
...

public Style ToggleButtonStyle
{
get { return (Style) GetValue( ToggleButtonStyleProperty ); }
set { SetValue( ToggleButtonStyleProperty, value ); }
}

public static readonly DependencyProperty ToggleButtonStyleProperty =
DependencyProperty.Register( "ToggleButtonStyle", typeof( Style ), typeof( DropDownButton ), null );

public Style DropDownBackgroundStyle
{
get { return (Style) GetValue( DropDownBackgroundStyleProperty ); }
set { SetValue( DropDownBackgroundStyleProperty, value ); }
}

public static readonly DependencyProperty DropDownBackgroundStyleProperty =
DependencyProperty.Register( "DropDownBackgroundStyle", typeof( Style ), typeof( DropDownButton ), null );

}

心智模型:可定制性/Themability 是我必须内置到我的自定义控件中的东西。

如果在一个具体的应用程序(和一个不同的程序集)中我需要我的控件遵循一个主题(不需要为每次出现显式设置样式)我必须提供一个单独的默认样式,但是新的默认样式style 只设置那些与外观有关的属性:所以我会在我的 App.xaml 中添加类似这样的内容:

<Application.Resources>
<ResourceDictionary>
<ui:Theme x:Key="Theme"/>
<Style TargetType="ToggleButton" x:Key="ThemedToggleButtonStyle">
<Setter Property="Background" Value="{Binding Path=CurrentTheme.DarkIconBrush, Source={StaticResource Theme}, Mode=OneTime}"/>
</Style>
<!-- implicity default style for all ToggleButtons -->
<Style TargetType="ToggleButton" BasedOn="{StaticResource ThemedToggleButtonStyle}"/>
<!-- implicity default style for all DropDownButtons -->
<Style TargetType="controls:DropDownButton">
<Setter Property="ToggleButtonStyle" Value="{StaticResource ThemedToggleButtonStyle}"/>
<Setter Property="Background" Value="{Binding Path=CurrentTheme.DarkIconBrush, Source={StaticResource Theme}, Mode=OneTime}"/>
</Style>
</ResourceDictionary>
</Application.Resources>

心智模型:要在我的具体应用之一中应用主题,我必须“添加第二层”隐式默认样式。提供该层是我的具体应用程序的关注点,而不是我的自定义控件组件的关注点。

关于c# - 绑定(bind)到 ResourceDictionary 中的静态主题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30334390/

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