Andrew KeepCoding
Andrew KeepCoding
I took a look at your project but couldn't understand your problem. Can you be more specific?
As a workaround, I published a NuGet package called **WinUI3Localizer** ([nuget.org](https://www.nuget.org/packages/WinUI3Localizer/)/[GitHub](https://github.com/AndrewKeepCoding/WinUI3Localizer)) that also works with unpackaged apps. It uses the general **Resources.resw** strings, so you should be able to switch...
Removing this line fixes the issue. I'm not sure why there's a separate foreground for Top style. ```xaml ```
As a workaround, you can set the focus on the ``AutoSuggestBox``. ```csharp private void OnNavigationViewControlLoaded(object sender, RoutedEventArgs e) { // Delay necessary to ensure NavigationView visual state can match navigation...
@LucaCris The code is just a workaround that works with the WinUI 3 Gallery app, hoping the gives you one way to fix the issue in your app. By the...
You can use the [NumerBoxEx](https://github.com/AndrewKeepCoding/AK.Toolkit#numberboxex) [NuGet package](https://www.nuget.org/packages/AK.Toolkit.WinUI3.NumberBoxEx/) that has these **DependencyProperties**. Check it out. - ``IsDeleteButtonVisible`` - ``NumberHorizontalAlignment`` Disclamer: I'm the maintainer of the NuGet package.
Closing this because it works on WindowsAppSDK v1.3.230602002.
I was able to reproduce this issue on a [test app](https://github.com/AndrewKeepCoding/MaterialDesignInXamlToolkit/tree/issue-3065-repro-app). ```xaml ``` These are the facts that I've found so far: - The issue can be reproduced: - by...
Sorry for the late response. New facts: - This doesn't reproduce on `MaterialDesignLinearProgressBar ` outside a button. - I think it's safe to say that this has nothing to do...
@nicolaihenriksen Thanks for the tips! Unfortunately, neither of these changes stops the memory leak when the app is minimized: - Freezing the effect: ```cs private static DropShadowEffect? Clone(DropShadowEffect? dropShadowEffect) {...