gpt4 book ai didi

wpf - 如何从 ComponentResourceKey 获取实际资源?

转载 作者:行者123 更新时间:2023-12-04 17:53:40 25 4
gpt4 key购买 nike

我在我的资源字典中定义了一个 ComponentResourceKey,如下所示:

<Style x:Key="{ComponentResourceKey TypeInTargetAssembly={x:Type local:Resources}, ResourceId=BaseControlStyle}" TargetType="{x:Type FrameworkElement}">
<Setter Property="Margin" Value="4,4,0,0" />
</Style>

我有一个静态类,用作提供资源键的快捷方式,如下所示:

public class Resources
{
public static ComponentResourceKey BaseControlStyleKey
{
get
{
return new ComponentResourceKey(typeof(Resources), "BaseControlStyle");
}
}
}

现在通常当我使用这种风格时,我会做这样的事情:

<TextBlock Style="{DynamicResource {x:Static local:Resources.BaseControlStyleKey}}"/>

但是,我有一个场景需要像这样在代码中设置样式:

myTextBox.Style = Resources.BaseControlStyleKey // Does not work.

我对如何从 ComponentResourceKey 中提取样式有任何想法吗?

最佳答案

我想通了。

myTextBox.Style = 
Application.Current.TryFindResource(Resources.BaseControlStyleKey)
as Style;

关于wpf - 如何从 ComponentResourceKey 获取实际资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/337803/

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