假如在 SilverlightApplication6 工程中添加一个文件夹 Content ,下面放置一个 mxh.txt 文件和 mxh.jpg 的照片,文件内容随便写,
Silverlight读取嵌入在xap文件中的文件内容
。在“解决方案浏览器”的文件属性中,设置“Build Action”为“Content”;“Copy to Output Directory”属性设置为“Do not copy”。在 xaml 文件中输入:
XAML 代码
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="800" Height="600">
xaml.cs 内容输入:
C# 代码
using System;
using System.Windows;
using System.Windows.Media.Imaging;
using System.Windows.Controls;
using System.IO;
using System.Windows.Resources;
namespace SilverlightApplication6
{
public partial class MainPage : UserControl
{
public MainPage()
{
InitializeComponent();
// 读取文字
StreamResourceInfo r = Application.GetResourceStream(new Uri("Content/mxh.txt", UriKind.Relative));
StreamReader sr = new StreamReader(r.Stream);
TextBoxName.Text = sr.ReadToEnd();
sr.Dispose();
//显示 Build Action 为 Content 图片
r = Application.GetResourceStream(new Uri("Content/mxh.jpg", UriKind.Relative));
BitmapImage bmp1 = new BitmapImage();
bmp1.SetSource(r.Stream);
ImageNameIncude.Source = bmp1;
//显示 Build Action 为 Resource 图片
r = Application.GetResourceStream(new Uri("SilverlightApplication6;component/Content/mxh2.jpg", UriKind.Relative));
BitmapImage bmp2 = new BitmapImage();
bmp2.SetSource(r.Stream);
ImageNameEmbed.Source = bmp2;
}
}
}
按F5进行编译预览,即可在 TextBox 中看到 mxh.txt文件的内容和显示孟宪会的照片,
电脑资料
《Silverlight读取嵌入在xap文件中的文件内容》(https://www.unjs.com)。注意:分隔符“;component/”是必须的。
另外,注意代码中使用了程序集的名字 SilverlightApplication6。