Please see attached image. What could be the cause of this? Some Fonts missing?
I'm using StyleManager for Theming.
1 Answer, 1 is accepted
0
Stenly
Telerik team
answered on 20 Jun 2024, 04:04 PM
Hello Claus,
This behavior can be present when there is a global Style for the TextBlock element, in which a setter for the FontFamily property is added that applies a new font.
To prevent this from occurring in the scope of the RadOpenFileDialog element while keeping the global FontFamily, you can use the following approach, which will retrieve these buttons and update the FontFamily property of the TextBlock elements inside them:
The approach uses the Loaded event of the RadOpenFileDialog instance and via the ChildrenOfType extension method, each of the buttons that are shown in the image that you provided are retrieved.
I hope the provided information will be of help to you.