Enable and Disable Notification bar in WPF Pdf Viewer

21 Jan 20251 minute to read

Notification bar is a part of the PDF Viewer that is used to display when an unexpected error occurs in the PDF Viewer control. You can suppress the display of the Notification bar by setting the EnableNotificationBar property to false. The following code example illustrate the same.

//Initialize PDF Viewer.
PdfViewerControl pdfViewer1 = new PdfViewerControl();
//Load the PDF.
pdfViewer1.Load("Sample.pdf");

// Hiding the scrollbar of the PDF Viewer
pdfviewer1.EnableNotificationBar= false;
'Initialize PDF Viewer.
Private pdfViewer1 As New PdfViewerControl()
'Load the PDF.
pdfViewer1.Load("Sample.pdf")

' Hiding the scrollbar of the PDF Viewer
pdfviewer1.EnableNotificationBar= False