我想知道是否有办法根据应用程序资源(在App.xaml中定义)定义直接资源(在用户控件或页面中定义)?
所以,如果我的App.xaml中有一个资源,如:
<my:ParentResource x:Key="AppResource" />
我可以根据应用程序资源的属性创建一个直接资源。类似的东西:
<UserControl.Resources>
<local:ChildResource x:Key="LocalResource" />
</UserControl.Resources>
其中ChildResource实际上是在ParentResource类中创建/实例化/找到的属性,例如ParentResource.Child。
这可以在Silverlight 4中使用吗?