我正在此链接上使用pdf查看器
https://archive.codeplex.com/?p=wpfpdfviewer
它在窗口中正确显示,并且一切正常。 但是,当我将视图添加到区域时,该视图不显示,视图中的其他用户组件正确显示,仅PdfViewer不显示。
我准备了一个示例代码来概述这种情况。
这是PdfViewer控件
<UserControl x:Class="Akbank.Treasury.Client.WPF.Controls.PdfViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Akbank.Treasury.Client.WPF.Controls"
mc:Ignorable="d"
Name="pdfControl"
d:DesignHeight="500"
d:DesignWidth="900">
<Grid>
<WindowsFormsHost x:Name="pdfHost">
<local:WinFormPdfHost>
</local:WinFormPdfHost>
</WindowsFormsHost>
</Grid>
</UserControl>
这是我的观点
<UserControl x:Class="Treasury.Common.Views.Common.Document.DocumentView"
xmlns:TControls="clr-namespace:Akbank.Treasury.Client.WPF.Controls;assembly=Akbank.Treasury.Client.WPF.Controls"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008">
<StackPanel Orientation="Vertical">
<Label Content="some content" />
<TextBox Text="some content" />
<TControls:PdfViewer Width="500"
Height="500"
x:Name="pdfViewer" />
</StackPanel>
</UserControl>
这有效
Window window = new Window();
window.Content = myView;
window.Show();
这不起作用,显示其他组件,但不显示Pdf控件。
RegionManager.AddToRegion("MainRegion", myView);