Chinese language treatment for WinUI bug.

This commit is contained in:
Burak Kaan Köse
2026-04-18 01:39:25 +02:00
parent 9e735c911c
commit 3caecc5a9c
16 changed files with 93 additions and 59 deletions
@@ -9,7 +9,7 @@ using Wino.Helpers;
namespace Wino.MenuFlyouts;
public partial class FilterMenuFlyout : MenuFlyout
public partial class FilterMenuFlyout : WinoMenuFlyout
{
public static readonly DependencyProperty SelectedFilterChangedCommandProperty = DependencyProperty.Register(nameof(SelectedFilterChangedCommand), typeof(IRelayCommand<FilterOption>), typeof(FilterMenuFlyout), new PropertyMetadata(null));
public static readonly DependencyProperty FilterOptionsProperty = DependencyProperty.Register(nameof(FilterOptions), typeof(List<FilterOption>), typeof(FilterMenuFlyout), new PropertyMetadata(null, new PropertyChangedCallback(OnOptionsChanged)));