在 WPF 中,我们可以根据目标类型获取样式,如下所示:
control.Style = (Style)toplevelcontrol.TryFindResource(typeof(control))
但在 WinRT 中我不能这样做。我只能使用密钥来获取资源。是否可以根据目标类型获取资源?请帮我解决这个问题。
提前致谢
在 WPF 中,我们可以根据目标类型获取样式,如下所示:
control.Style = (Style)toplevelcontrol.TryFindResource(typeof(control))
但在 WinRT 中我不能这样做。我只能使用密钥来获取资源。是否可以根据目标类型获取资源?请帮我解决这个问题。
提前致谢
WPF 和 Winrt 在这里处理资源的主要区别在于您FindResource()
在 WPF 对象中获取和兄弟姐妹,而在 Winrt 中您只有Resources
属性。
将对象类型用作TargetType
样式键的基本技术仍然有效。这是一个简单的辅助扩展方法来做你想做的事:
public static object TryFindResource(this FrameworkElement element, object key)
{
if (element.Resources.ContainsKey(key))
{
return element.Resources[key];
}
return null;
}
就像在 WPF 中一样调用:
control.Style = (Style)toplevelcontrol.TryFindResource(control.GetType());
(请注意,您的原始示例无法编译,因为control
它是变量,并且您不能typeof
在变量上使用。我已经修复了上述示例调用中的错误)。
这也很好用,如下所示,
if (element.Resources.ContainsKey(key))
return element.Resources[key];
else
{
if (element.Parent != null && element.Parent is FrameworkElement)
return ((FrameworkElement)element.Parent).TryFindResource(key);
else
{
if (Application.Current.Resources.ContainsKey(key))
return Application.Current.Resources[key];
}
}
如果元素没有该键,则在其父元素中搜索