Open gotnetdude opened 7 years ago
I'm not sure how this could be caused by the PdfiumViewer project. Would you be able to create a (small) project that reproduces this issue? The easiest would be to fork the PdfiumViewer project and modify the Demo project to reproduce this issue. Then I could have a look at your fork and see how this could be solved.
I have a C# WinForm application which renders a PDF to the viewer on clicking a button in gridview
Clicking the Open button cause the following code to be run:
The PDF is displayed in the viewer:
Now when I click on the close button the gridview is redisplayed. The following code is run:
private void btnPDFViewerClose_Click(object sender, EventArgs e) { pnlTopLevelProcessSheetInfo.Visible = true; gvProcessSheet.Visible = true; pnlPDFViewer.Visible = false; pdfViewer1.Visible = false; btnPDFViewerClose.Visible = false; lblmessage.Visible = true; // FindNextPendingItem(); }
The gridview is rendered but only accepts one digit. The user scans in there employee badge, but the gridview only excepts one digit. Please advise on how to fix this problem. Thanks Paul