我有一个使用 System.Windows.Controls.PrintDialog 的 WPF UserControl:
XAML:
<UserControl x:Class="WpfControlLibrary1.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Button Click="Button_Click"/>
</UserControl>
代码隐藏:
namespace WpfControlLibrary1
{
using System.Windows;
using System.Windows.Controls;
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
var printer = new PrintDialog();
printer.ShowDialog();
}
}
}
如果我现在在 WPF 应用程序中使用此 UserControl,则 PrintDialog-Windows 将显示为模式对话框。(如 msdn 中所述)
但是,如果我在 Wondows-Forms 应用程序中使用 UserControl,则该对话框将显示为非模态对话框。
当我在 Windows-Forms 应用程序中托管用户控件时,任何人都知道如何将 PrintDialog 称为模式对话框?
谢谢你的期待rhe1980