我在资源字典中定义了一个 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 中提取样式?