WindowsFormsHost 触发后 WPF 控件冻结以查看 PDF

WPF Control Freeze after WindowsFormsHost trigger to view PDF

我的用户控件冻结有问题。当我触发 WindowsFormsHost 预览 PDF 文件时,就会发生这种情况。 pdf 文件仍然 运行 在 WindowsFormsHost 中,我仍然可以滚动查看它。但是,我的其他控件(切换按钮、弹出框等)似乎不起作用。

这是我的 UserControl

中 WindowsFormsHost 的 XAML 代码
<Grid Margin="0,0,203,0">
  <WindowsFormsHost x:Name="ViewPDFWinForm" HorizontalAlignment="Left" Height="444" VerticalAlignment="Top" Width="708"/>
</Grid>      

这是触发 WindowsFormsHost 从 UserControl 调用 PDF 文件的代码

PreviewReportPDF uc = new PreviewReportPDF(ReportGenerator.ReportPath);
this.ViewPDFWinForm.Child = uc;

这是我传递pdf文件路径的方式

public PreviewReportPDF(string filepath)
    {
        InitializeComponent();
        this.axAcroPDF1.LoadFile(filepath);
        this.axAcroPDF1.setZoom(63);
    }

我已尽我所能效仿您的榜样。我不明白为什么你的控件冻结了。 看来问题出在其他地方。

我将 Acrobat Reader 控件添加到用户控件 "UserControl1"

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WpfApplication9
{
public partial class UserControl1 : UserControl
{

    public UserControl1(string filepath)
    {
        InitializeComponent();
        this.axAcroPDF1.LoadFile(filepath);
        this.axAcroPDF1.setZoom(63);
    }
}
}

我创建了一个 WPF Window,像这样:

Window x:Class="WpfApplication9.MainWindow"
    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"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:WpfApplication9"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525" Loaded="Window_Loaded">
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <WindowsFormsHost x:Name="host"/>
    <ToggleButton Content="Toggle" Grid.Column="1" Click="ToggleButton_Click" />

</Grid>
</Window>

后面还有这段代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.IO;
using Microsoft.VisualBasic;

namespace WpfApplication9
{
/// <summary>
/// Interaktionslogik für MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
    }

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        UserControl1 uc = new UserControl1(System.IO.Path.Combine(Microsoft.VisualBasic.FileIO.SpecialDirectories.Desktop, "Test.pdf"));
        this.host.Child = uc;
    }

    private void ToggleButton_Click(object sender, RoutedEventArgs e)
    {
        MessageBox.Show("Hallo welt!");
    }
}
}

加载 pdf 文件后,我可以触发切换按钮事件,因此会显示消息框。这就是为什么我猜你的问题来自其他地方。