Frosty Bee
Frosty Bee
@chucker @Porterbg Have you explored the code of the Wpf.Ui.Demo.Simple app? If you do, you will notice the following line in MainWindow.xaml.cs: Loaded += (_, _) => RootNavigation.Navigate(typeof(DashboardPage)); // where...
I am not experiencing any issue with changing the font size of any control. Perhaps you are not configuring the project the right way? Tested with Preview.13 
> @frostybee I've added minimal test code https://github.com/IOL0ol1/WpfUITest Yes, I saw your test code. However, you are not using the WPF UI controls the right way. Please refer to my...
@IOL0ol1 @NoThrottle @SouljaVR @timheuer I guess I found a fix. I just added the following to the ResourceDictionary in App.xaml and it worked. ``` ``` The cause of this problem...
Hello @Reeceeboii, Have you tried the Wpf.Ui.Demo.Mvvm sample? Changing the theme should be done through the Wpf.Ui.Appearance.ApplicationThemeManager and not like how you did it. I suggest that you clone the...
As far as I know, there has been some refactoring done on the changing the theme logic: ThemeType has been replaced by Application theme in ApplicationTheme in newer versions >...
Hello @afluegge, To disable whole page scrolling, you need to add the following line to the opening tag of the page (see screenshot below): ScrollViewer.CanContentScroll="False" By default, the content of...