Completed
Last Updated: 08 May 2023 13:53 by ADMIN
Release R2 2023
Frank
Created on: 09 Dec 2022 11:23
Category: PDFViewer
Type: Bug Report
1
PdfViewer: CurrentPageTextBox is not loaded in Windows11Theme

When Windows11Theme is applied before the PdfViewer is initialized the CurrentPageTextBox is not loaded successfully.

Workaround: Set the ApplicationTheme after the InitializeComponent method:

public MainWindow()
{
	InitializeComponent();

	StyleManager.ApplicationTheme = new Windows11Theme();
}

 

0 comments