hel*_*ker 0 wpf xaml resourcedictionary dynamicresource
我在模板中使用 DynamicResource,并在使用该模板的每个样式中使用 StaticResourceExtensions 作为资源,以便在每个样式中对 DynamicResource 进行不同的评估。
问题是,我收到此错误:
Unable to cast object of type 'System.Windows.Media.Effects.DropShadowEffect' to type 'System.Windows.ResourceDictionary'
Run Code Online (Sandbox Code Playgroud)
这是我的代码:
<DropShadowEffect
x:Key="Sombra"
Opacity="0.5"
ShadowDepth="3"
BlurRadius="5"
/>
<ControlTemplate
x:Key="ControleGeometriaTemplate"
TargetType="{x:Type Control}"
>
<Border
x:Name="border"
Background="{TemplateBinding Background}"
Width="{TemplateBinding Width}"
Height="{TemplateBinding Height}"
/>
<Path
x:Name="ícone"
Fill="{TemplateBinding Foreground}"
Effect="{DynamicResource PathShadow}"
/>
</Border>
</ControlTemplate>
<Style x:Key="BotãoGeometria" TargetType="{x:Type ButtonBase}">
<Setter Property="Template" Value="{StaticResource ControleGeometriaTemplate}"/>
</Style>
<Style
x:Key="BotãoNavegaçãoBase"
TargetType="{x:Type ButtonBase}"
BasedOn="{StaticResource BotãoGeometria}"
>
<Style.Resources>
<StaticResource x:Key="PathShadow" ResourceKey="Sombra"/>
</Style.Resources>
</Style>
Run Code Online (Sandbox Code Playgroud)
据我所知,StaticResourceExtension在某些情况下不能正常工作。
闻起来好像你发现了类似的情况:
<SolidColorBrush x:Key="RedBrush" Color="Red" />
<Style TargetType="TextBox" x:Key="Test">
<Style.Resources>
<StaticResourceExtension x:Key="NewRedBrushKey" ResourceKey="RedBrush" />
</Style.Resources>
</Style>
Run Code Online (Sandbox Code Playgroud)
使用Test您的样式Window足以重现您的问题。
所以我的建议是使用你自己的扩展:
public class ResourceFinder : System.Windows.Markup.MarkupExtension
{
public override object ProvideValue(IServiceProvider serviceProvider)
{
FrameworkElement frameworkElement;
IDictionary dictionary;
IRootObjectProvider rootObjectProvider = (IRootObjectProvider)
serviceProvider.GetService(typeof(IRootObjectProvider));
if (rootObjectProvider != null)
{
dictionary = rootObjectProvider.RootObject as IDictionary;
if (dictionary != null)
{
return dictionary[ResourceKey];
}
else
{
frameworkElement = rootObjectProvider.RootObject as FrameworkElement;
if (frameworkElement != null)
{
return frameworkElement.TryFindResource(ResourceKey);
}
}
}
return null;
}
public object ResourceKey
{
get;
set;
}
}
Run Code Online (Sandbox Code Playgroud)
那么你的风格就会变成:
<Style
x:Key="BotãoNavegaçãoBase"
TargetType="{x:Type ButtonBase}"
BasedOn="{StaticResource BotãoGeometria}">
<Style.Resources>
<local:ResourceFinder x:Key="PathShadow" ResourceKey="Sombra" />
</Style.Resources>
</Style>
Run Code Online (Sandbox Code Playgroud)
我希望这可以帮助您解决您的问题。
| 归档时间: |
|
| 查看次数: |
923 次 |
| 最近记录: |