答案 0 :(得分:0)
据我所知,不,你不能。但是,您可以将DocumentViewer渲染为XPS,然后将其渲染为PDF。
答案 1 :(得分:0)
<Label>
<Hyperlink Click="lnkSelectDocument_Click">
<Label Content="{Binding ShortFielName}">
</Label>
</Hyperlink>
</Label>
private void lnkSelectDocument_Click(object sender, RoutedEventArgs e) {
try {
System.Diagnostics.Process process = new System.Diagnostics.Process();
string path = "d:\\test.doc";
Uri pdf = new Uri(path, UriKind.RelativeOrAbsolute);
process.StartInfo.FileName = pdf.LocalPath;
process.Start();
process.WaitForExit();
} catch (Exception error) {
MessageBox.Show("Could not open the file.", "Error", MessageBoxButton.OK,
MessageBoxImage.Warning);
}
}