在silverlight中如何打开word文档
发布网友
发布时间:2022-05-13 18:42
我来回答
共2个回答
热心网友
时间:2023-10-21 04:56
1、Silverlight 不支持Word文档格式。 http://www.vectorlight.net/tutorials/silverlight_4/word.aspx 这里也只是利用了 Silverlight4 调用 COM 来实现访问和操作Word文档,但是还是不能直接在 Silverlight 中显示文档内容。只能在 OOB 模式下应用,打开 OOB 窗口,还需要设置里面的 "Require elevated trust when running outside the browser" 提升权限,程序才能调用。
2、Word文档转存为 XPS 格式或 PDF 格式,再利用第三方控件呈现内容。http://www.silverlightshow.net/news/Silverlight-XPS-Viewer.aspx
热心网友
时间:2023-10-21 04:56
<StackPanel>
<Button Click="Button_Click" Content="Open" Width="150" Height="20"></Button>
<ScrollViewer Width="600" Height="500">
<TextBlock x:Name="Text" Width="600" TextWrapping="Wrap"></TextBlock>
</ScrollViewer>
</StackPanel>
// Create open file dialog box
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "Word Files(*.docx)|*.docx|All files (*.*)|*.*";
openFileDialog1.FilterIndex = 1;
if (openFileDialog1.ShowDialog() == true)
{
using (Stream fileStream = openFileDialog1.File.OpenRead())
{
StreamResourceInfo sri = new StreamResourceInfo(fileStream, @"application/zip");
using (StreamReader sr = new StreamReader(
Application.GetResourceStream(sri, new Uri("word/document.xml", UriKind.Relative)).Stream))
{
this.Text.Text = sr.ReadToEnd();
}
}
}