在 Windows 商店应用程序项目中,我有一个pdftron.PDF.PDFViewCtrl MyPDFViewCtrl
然后我有一个按钮,当我点击时,我会调用一个方法,该方法应该用于打印加载到MyPDFViewCtrl
我尝试过这样的事情:
private void Print_Tapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
{
pdftron.PDF.PDFPrintManager MyPrintManager;
MyPrintManager = pdftron.PDF.PDFPrintManager.GetInstance();
Windows.ApplicationModel.Resources.ResourceLoader loader = ResourceLoader.GetForCurrentView("Printing");
MyPrintManager.SetResourceLoader(loader);
MyPrintManager.UnRegisterForPrintingContract();
MyPrintManager.AddStandardPrintOption(Windows.Graphics.Printing.StandardPrintTaskOptions.MediaSize);
MyPrintManager.AddStandardPrintOption(Windows.Graphics.Printing.StandardPrintTaskOptions.Orientation);
MyPrintManager.AddUserOptionPageRange();
MyPrintManager.RegisterForPrintingContract(docpdf, docpdf.GetDocInfo().GetTitle());
}
但是当我按下按钮时没有任何反应。
我做错了吗?