首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > CAD教程 >

关于silverlight中的资源字典的有关问题

2012-02-06 
关于silverlight中的资源字典的问题我在silverlight中定义了这样的一个资源字典01ResourceDictionary02xm

关于silverlight中的资源字典的问题
我在silverlight中定义了这样的一个资源字典
01<ResourceDictionary
02 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
03 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
04 <!-- 应该在此定义资源字典条目。-->
05  
06 <LinearGradientBrush x:Key="AppleStyle1" EndPoint="0.5,1" StartPoint="0.5,0">
07 <GradientStop Color="#FF606060" Offset="0"/>
08 <GradientStop Color="Black" Offset="1"/>
09 <GradientStop Color="#FE333333" Offset="0.487"/>
10 <GradientStop Color="#FE161515" Offset="0.574"/>
11 </LinearGradientBrush>
12 
13  
14</ResourceDictionary>
发现没办法在Fill="{StaticResource AppleStyle1}"或者style="{StaticResource AppleStyle1}"引用,但是放到app.xaml中就能引用,,请问怎么引用资源字典中定义的样式啊??

[解决办法]
可以在App.xaml文件中引入
<Application.Resources>
<ResourceDictionary Source="你的ResourceDictionary.xaml相对路径" />
</Application.Resources>

热点排行