我这里有这样的问题。我的 WPF 项目中有一个窗口,并且有一个按钮,其中包含我想要使用打印机打印该页面的内容。我对该按钮的点击事件是这样的。
PrintDialog dlg = new PrintDialog();
Window currentMainWindow = Application.Current.MainWindow;
Application.Current.MainWindow = this;
if ((bool)dlg.ShowDialog().GetValueOrDefault())
{
Application.Current.MainWindow = currentMainWindow;
}
当我单击按钮时,会弹出打印对话框。 但是,当单击打印时,没有任何反应,对话框刚刚关闭,没有结果,它不适用于 Adobe PDF,不适用于 ARX CoSign ...
该怎么办 ?谢谢