Silverlight中资源文件的引用

简介: 1、新建一个资源文件,比如: Gaugestyle.xaml和MenuButton.xaml2、在App.

1、新建一个资源文件,比如: Gaugestyle.xamlMenuButton.xaml


2、在App.xaml中添加该资源:

<Application
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="spjl1.App">
	<Application.Resources>
		<!-- Resources scoped at the Application level should be defined here. -->
		<ResourceDictionary>
			<ResourceDictionary.MergedDictionaries>
				<ResourceDictionary Source="Gaugestyle.xaml"/>
				<ResourceDictionary Source="MenuButton.xaml"/>
			</ResourceDictionary.MergedDictionaries>
		</ResourceDictionary>
	</Application.Resources>
</Application>

3、在页面文件后台中使用:

 ResourceDictionary resources = new ResourceDictionary();
 resources.Source = new Uri("/spjl1;component/MenuButton.xaml", System.UriKind.Relative);
 RadWindow1.Style = resources["ChildWindowStyle1"] as Style;

 

=====================================================内容补充======================================================

这里用一个Label的资源样式文件LabelStyle.xaml来讲解:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
    <!--添加面板·标题-->
    <Style x:Key="tbAddTitle" TargetType="{x:Type Label}">
        <Setter Property="FontFamily" Value="Microsoft YaHei" />
        <Setter Property="Height" Value="28" />
        <Setter Property="FontSize" Value="16" />
        <Setter Property="Foreground" Value="#FF0000" />
        <Setter Property="FontWeight" Value="Bold" />
        <Setter Property="HorizontalAlignment" Value="Left" />
        <Setter Property="VerticalAlignment" Value="Center" />
    </Style>
</ResourceDictionary>

 

将该资源样式文件添加到App.xaml中

<Application
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="spjl1.App">
	<Application.Resources>
		<!-- Resources scoped at the Application level should be defined here. -->
		<ResourceDictionary>
			<ResourceDictionary.MergedDictionaries>
				<ResourceDictionary Source="LabelStyle.xaml"/>
			</ResourceDictionary.MergedDictionaries>
		</ResourceDictionary>
	</Application.Resources>
</Application>




如果在前台XAML中使用,使用Style属性,方式如下:

  <TextBlock Foreground="Black" Margin="0,1,479,0" Name="textBlock1" Style="{StaticResource tbAddTitle}" Text="供货商名称:" Grid.ColumnSpan="2" />



 


相关文章
|
Windows
艾伟_转载:Silverlight陷阱:注意程序集引用问题
  假定我要用Silverlight类库实现一些通用控件,然后在应用程序中引用这个控件库。当然,控件通常也要访问其他一些第三方或开源的开发包,例如Silverlight Toolkit。   于是这个项目的依赖关系如下: Silverlight Application => Silverlight Control => Silverlight Toolkit。
1002 0
Silverlight添加服务引用Service Reference, 出现“自定义工具错误,无法生成服务引用”错误的解决办法
自定义工具错误: 无法生成服务引用“*****”的代码  WCF Service或WebService中包含一些比较复杂的逻辑定义,并且引用了一些自己定义的组件,项目本身是可以编译通过的,但是就是无法被添加Service Reference。
773 0
|
C#
Silverlight中资源文件的引用
原文http://blog.csdn.net/taomanman/article/details/6777291   1、新建一个资源文件,比如: Gaugestyle.xaml和MenuButton.
721 0

热门文章

最新文章