diff --git a/Directory.Build.props b/Directory.Build.props index cf67c770c..eacb8a7cc 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -6,7 +6,7 @@ - 4.0.0-rc.3 + 4.0.0 4.0.0 @@ -17,7 +17,7 @@ lepoco;toolkit;wpf;fluent;navigation;controls;design;icons;system;accent;theme;winui MIT true - Copyright (C) 2021-2024 Leszek Pomianowski and WPF UI Contributors + Copyright (C) 2021-2025 Leszek Pomianowski and WPF UI Contributors https://github.com/lepoco/wpfui https://github.com/lepoco/wpfui/releases Icon.png diff --git a/LICENSE b/LICENSE index 4642df15d..540d1d913 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2024 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ +Copyright (c) 2021-2025 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE.md b/LICENSE.md index 4642df15d..540d1d913 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2024 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ +Copyright (c) 2021-2025 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/docfx.json b/docs/docfx.json index e338a2776..3f2eaccff 100644 --- a/docs/docfx.json +++ b/docs/docfx.json @@ -57,7 +57,7 @@ "_appName": "WPF UI", "_appFaviconPath": "images/favicon.ico", "_appLogoPath": "images/wpfui.png", - "_appFooter": "Made with docfx, ChatGPT and DeepL | Copyright © 2024 lepo.co" + "_appFooter": "Made with docfx, ChatGPT and DeepL | Copyright © 2025 lepo.co" }, "dest": "_site", "template": [ diff --git a/docs/templates/wpfui/layout/_master.tmpl b/docs/templates/wpfui/layout/_master.tmpl index 4a8f59273..14ed8c5a8 100644 --- a/docs/templates/wpfui/layout/_master.tmpl +++ b/docs/templates/wpfui/layout/_master.tmpl @@ -134,7 +134,7 @@ diff --git a/src/Wpf.Ui.Extension/license.txt b/src/Wpf.Ui.Extension/license.txt index 4642df15d..540d1d913 100644 --- a/src/Wpf.Ui.Extension/license.txt +++ b/src/Wpf.Ui.Extension/license.txt @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2024 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ +Copyright (c) 2021-2025 Leszek Pomianowski and WPF UI Contributors. https://lepo.co/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/Wpf.Ui.Gallery.Package/Package.appxmanifest b/src/Wpf.Ui.Gallery.Package/Package.appxmanifest index 44c1ef82b..a94001f4b 100644 --- a/src/Wpf.Ui.Gallery.Package/Package.appxmanifest +++ b/src/Wpf.Ui.Gallery.Package/Package.appxmanifest @@ -9,7 +9,7 @@ + Version="4.0.0.0" /> WPF UI diff --git a/src/Wpf.Ui.Gallery/Effects/Snowflake.cs b/src/Wpf.Ui.Gallery/Effects/Snowflake.cs index af09d465c..9ff53849a 100644 --- a/src/Wpf.Ui.Gallery/Effects/Snowflake.cs +++ b/src/Wpf.Ui.Gallery/Effects/Snowflake.cs @@ -110,4 +110,4 @@ public TranslateTransform? Transform get => _transform; set => _transform = value; } -} \ No newline at end of file +} diff --git a/src/Wpf.Ui.Gallery/Effects/SnowflakeEffect.cs b/src/Wpf.Ui.Gallery/Effects/SnowflakeEffect.cs index b7c646dc6..e60ae8045 100644 --- a/src/Wpf.Ui.Gallery/Effects/SnowflakeEffect.cs +++ b/src/Wpf.Ui.Gallery/Effects/SnowflakeEffect.cs @@ -13,12 +13,12 @@ namespace Wpf.Ui.Gallery.Effects; /// internal class SnowflakeEffect { - private readonly Canvas _canvas; // Canvas for displaying snowflakes - private readonly Random _random = new(); // Random number generator - private readonly List _snowFlakes = []; // Stores all snowflake objects - private readonly int _flakeCount; // Number of snowflakes - private double mX = -100; // Mouse X-coordinate, default value -100 - private double mY = -100; // Mouse Y-coordinate, default value -100 + private readonly Canvas _canvas; // Canvas for displaying snowflakes + private readonly Random _random = new(); // Random number generator + private readonly List _snowFlakes = []; // Stores all snowflake objects + private readonly int _flakeCount; // Number of snowflakes + private double mX = -100; // Mouse X-coordinate, default value -100 + private double mY = -100; // Mouse Y-coordinate, default value -100 /// /// Initializes a new instance of the class. @@ -79,17 +79,17 @@ private void InitSnowFlakes() /// private void CreateSnowFlake() { - double size = (_random.NextDouble() * 3) + 2; // Snowflake size - double speed = (_random.NextDouble() * 1) + 0.5; // Falling speed - double opacity = (_random.NextDouble() * 0.5) + 0.3; // Opacity - double x = _random.NextDouble() * _canvas.ActualWidth; // Initial X position + double size = (_random.NextDouble() * 3) + 2; // Snowflake size + double speed = (_random.NextDouble() * 1) + 0.5; // Falling speed + double opacity = (_random.NextDouble() * 0.5) + 0.3; // Opacity + double x = _random.NextDouble() * _canvas.ActualWidth; // Initial X position double y = _random.NextDouble() * _canvas.ActualHeight; // Initial Y position Ellipse flakeShape = new() { Width = size, Height = size, - Fill = new SolidColorBrush(Color.FromArgb((byte)(opacity * 255), 255, 255, 255)) + Fill = new SolidColorBrush(Color.FromArgb((byte)(opacity * 255), 255, 255, 255)), }; TranslateTransform transform = new(x, y); @@ -110,7 +110,7 @@ private void CreateSnowFlake() StepSize = _random.NextDouble() / 30 * 1, Step = 0, Angle = 180, - Transform = transform + Transform = transform, }; _snowFlakes.Add(flake); @@ -195,7 +195,10 @@ private void ResetFlake(SnowFlake flake) flake.Shape.SetCurrentValue(FrameworkElement.WidthProperty, flake.Size); flake.Shape.SetCurrentValue(FrameworkElement.HeightProperty, flake.Size); - flake.Shape.SetCurrentValue(Shape.FillProperty, new SolidColorBrush(Color.FromArgb((byte)(flake.Opacity * 255), 255, 255, 255))); + flake.Shape.SetCurrentValue( + Shape.FillProperty, + new SolidColorBrush(Color.FromArgb((byte)(flake.Opacity * 255), 255, 255, 255)) + ); } /// diff --git a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml.cs index f97f132cf..8ff869935 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/BasicInput/BasicInputPage.xaml.cs @@ -30,8 +30,10 @@ public BasicInputPage(BasicInputViewModel viewModel, INavigationService navigati private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Collections/CollectionsPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/Collections/CollectionsPage.xaml.cs index 143c964ad..4bd711310 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Collections/CollectionsPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/Collections/CollectionsPage.xaml.cs @@ -30,8 +30,10 @@ public CollectionsPage(CollectionsViewModel viewModel, INavigationService naviga private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/DateAndTime/DateAndTimePage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/DateAndTime/DateAndTimePage.xaml.cs index 01b5860d8..df743eefa 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/DateAndTime/DateAndTimePage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/DateAndTime/DateAndTimePage.xaml.cs @@ -30,8 +30,10 @@ public DateAndTimePage(DateAndTimeViewModel viewModel, INavigationService naviga private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/DialogsAndFlyouts/DialogsAndFlyoutsPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/DialogsAndFlyouts/DialogsAndFlyoutsPage.xaml.cs index 6edb40ff4..c0ee20788 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/DialogsAndFlyouts/DialogsAndFlyoutsPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/DialogsAndFlyouts/DialogsAndFlyoutsPage.xaml.cs @@ -30,8 +30,10 @@ public DialogsAndFlyoutsPage(DialogsAndFlyoutsViewModel viewModel, INavigationSe private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Layout/LayoutPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/Layout/LayoutPage.xaml.cs index 921cea37a..3848042ab 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Layout/LayoutPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/Layout/LayoutPage.xaml.cs @@ -30,8 +30,10 @@ public LayoutPage(LayoutViewModel viewModel, INavigationService navigationServic private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml.cs index 61b853a06..5ae0c66f3 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/Media/MediaPage.xaml.cs @@ -30,8 +30,10 @@ public MediaPage(MediaViewModel viewModel, INavigationService navigationService) private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/Navigation/NavigationPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/Navigation/NavigationPage.xaml.cs index 43e728122..cee101172 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/Navigation/NavigationPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/Navigation/NavigationPage.xaml.cs @@ -30,8 +30,10 @@ public NavigationPage(NavigationViewModel viewModel, INavigationService navigati private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/OpSystem/OpSystemPage.xaml.cs b/src/Wpf.Ui.Gallery/Views/Pages/OpSystem/OpSystemPage.xaml.cs index 5f3dda07c..c16fa8a95 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/OpSystem/OpSystemPage.xaml.cs +++ b/src/Wpf.Ui.Gallery/Views/Pages/OpSystem/OpSystemPage.xaml.cs @@ -30,8 +30,10 @@ public OpSystemPage(OpSystemViewModel viewModel, INavigationService navigationSe private void HandleLoaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Collapsed + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Collapsed); } @@ -45,8 +47,7 @@ private void HandleLoaded(object sender, RoutedEventArgs e) MainTitle.SetCurrentValue(System.Windows.Controls.TextBlock.TextProperty, newTitle); } - if (selectedItem.Icon is SymbolIcon selectedIcon && - MainSymbolIcon.Symbol != selectedIcon.Symbol) + if (selectedItem.Icon is SymbolIcon selectedIcon && MainSymbolIcon.Symbol != selectedIcon.Symbol) { MainSymbolIcon.SetCurrentValue(SymbolIcon.SymbolProperty, selectedIcon.Symbol); } @@ -59,8 +60,10 @@ private void HandleLoaded(object sender, RoutedEventArgs e) private void HandleUnloaded(object sender, RoutedEventArgs e) { INavigationView? navigationControl = _navigationService.GetNavigationControl(); - if (navigationControl?.BreadcrumbBar != null && - navigationControl.BreadcrumbBar.Visibility != Visibility.Visible) + if ( + navigationControl?.BreadcrumbBar != null + && navigationControl.BreadcrumbBar.Visibility != Visibility.Visible + ) { navigationControl.BreadcrumbBar.SetCurrentValue(VisibilityProperty, Visibility.Visible); } diff --git a/src/Wpf.Ui.Gallery/Views/Pages/SettingsPage.xaml b/src/Wpf.Ui.Gallery/Views/Pages/SettingsPage.xaml index 100ca7b04..691cbc21e 100644 --- a/src/Wpf.Ui.Gallery/Views/Pages/SettingsPage.xaml +++ b/src/Wpf.Ui.Gallery/Views/Pages/SettingsPage.xaml @@ -91,7 +91,7 @@ Grid.Row="1" Grid.Column="0" Foreground="{ui:ThemeResource TextFillColorSecondaryBrush}" - Text="© 2024 lepo.co | Leszek Pomianowski & WPF UI Contributors" /> + Text="© 2025 lepo.co | Leszek Pomianowski & WPF UI Contributors" /> -/// Represents a list of filled Fluent System Icons v.1.1.233. +/// Represents a list of filled Fluent System Icons v.1.1.271. /// May be converted to using GetGlyph() or to using GetString() /// +#pragma warning disable CS1591 public enum SymbolFilled { /// @@ -17,6 +18,7 @@ public enum SymbolFilled Empty = 0x0, // Automatically generated, may contain bugs. + AccessTime20 = 0xE000, Accessibility32 = 0xE001, Accessibility48 = 0xE002, @@ -7824,4 +7826,595 @@ public enum SymbolFilled SpatulaSpoon28 = 0xF0612, SpatulaSpoon32 = 0xF0613, SpatulaSpoon48 = 0xF0614, + AppsSettings16 = 0xF0615, + AppsSettings20 = 0xF0616, + AppsShield16 = 0xF0617, + AppsShield20 = 0xF0618, + ArrowUpload32 = 0xF0619, + CalendarEdit32 = 0xF061A, + DataBarVerticalArrowDown16 = 0xF061B, + DataBarVerticalArrowDown20 = 0xF061C, + DataBarVerticalArrowDown24 = 0xF061D, + HapticStrong16 = 0xF061E, + HapticStrong20 = 0xF061F, + HapticStrong24 = 0xF0620, + HapticWeak16 = 0xF0621, + HapticWeak20 = 0xF0622, + HapticWeak24 = 0xF0623, + HexagonSparkle20 = 0xF0624, + HexagonSparkle24 = 0xF0625, + MailEdit32 = 0xF0626, + Password32 = 0xF0627, + Password48 = 0xF0628, + PasswordClock48 = 0xF0629, + PasswordReset48 = 0xF062A, + PeopleEye16 = 0xF062B, + PeopleEye20 = 0xF062C, + PinGlobe16 = 0xF062D, + PinGlobe20 = 0xF062E, + Run28 = 0xF062F, + Run32 = 0xF0630, + Run48 = 0xF0631, + TabGroup16 = 0xF0632, + TabGroup20 = 0xF0633, + TabGroup24 = 0xF0634, + Book28 = 0xF0635, + Book48 = 0xF0636, + CameraArrowUp16 = 0xF0637, + CameraArrowUp20 = 0xF0638, + CameraArrowUp24 = 0xF0639, + ChatSettings16 = 0xF063A, + CircleHighlight20 = 0xF063B, + CircleHighlight24 = 0xF063C, + CircleHint24 = 0xF063D, + CircleShadow20 = 0xF063E, + CircleShadow24 = 0xF063F, + ContentView16 = 0xF0640, + DoubleTapSwipeDown16 = 0xF0641, + DoubleTapSwipeUp16 = 0xF0642, + FlashSparkle16 = 0xF0643, + LocationRipple12 = 0xF0644, + SearchSquare16 = 0xF0645, + SettingsChat16 = 0xF0646, + ShareMultiple16 = 0xF0647, + ShareMultiple20 = 0xF0648, + ShareMultiple24 = 0xF0649, + SlidePlay20 = 0xF064A, + SlidePlay24 = 0xF064B, + ArrowTurnRight16 = 0xF064C, + ChartMultiple16 = 0xF064D, + Column24 = 0xF064E, + DataPie16 = 0xF064F, + LayoutColumnTwo32 = 0xF0650, + LayoutRowTwo32 = 0xF0653, + MailCopy32 = 0xF0655, + PaintBrushSparkle20 = 0xF0656, + PaintBrushSparkle24 = 0xF0657, + PeopleCommunity12 = 0xF0658, + PersonBoard12 = 0xF0659, + PersonTentative16 = 0xF065A, + PersonTentative20 = 0xF065B, + PersonTentative24 = 0xF065C, + TabDesktopSearch16 = 0xF065D, + TabDesktopSearch20 = 0xF065E, + TabDesktopSearch24 = 0xF065F, + TableSparkle20 = 0xF0660, + TableSparkle24 = 0xF0661, + Comment32 = 0xF0662, + CommentAdd32 = 0xF0663, + CropArrowRotate16 = 0xF0664, + CropArrowRotate20 = 0xF0665, + CropArrowRotate24 = 0xF0666, + DesktopOff20 = 0xF0667, + DesktopOff24 = 0xF0668, + Food28 = 0xF0669, + Food32 = 0xF066A, + Food48 = 0xF066B, + LayerDiagonalAdd24 = 0xF066C, + MailAlert32 = 0xF066D, + MailArrowClockwise32 = 0xF066E, + PersonSupport32 = 0xF066F, + TagOff16 = 0xF0670, + TextColumnOneWideLightning16 = 0xF0671, + WalletCreditCard28 = 0xF0672, + WalletCreditCard48 = 0xF0673, + BreakoutRoom32 = 0xF0674, + CardUiPortraitFlip16 = 0xF0675, + CardUiPortraitFlip20 = 0xF0676, + CardUiPortraitFlip24 = 0xF0677, + Cursor28 = 0xF0678, + Cursor32 = 0xF0679, + LayoutRowTwo28 = 0xF067A, + LayoutRowTwo48 = 0xF067B, + NotepadSparkle16 = 0xF067C, + NotepadSparkle20 = 0xF067D, + NotepadSparkle24 = 0xF067E, + NotepadSparkle28 = 0xF067F, + NotepadSparkle32 = 0xF0680, + PaintBrush28 = 0xF0681, + PaintBrushSubtract16 = 0xF0682, + PaintBrushSubtract20 = 0xF0683, + PaintBrushSubtract24 = 0xF0684, + PaintBrushSubtract28 = 0xF0685, + PaintBrushSubtract32 = 0xF0686, + PlayCircleSparkle16 = 0xF0687, + PlayCircleSparkle20 = 0xF0688, + PlayCircleSparkle24 = 0xF0689, + Replay16 = 0xF068A, + Replay24 = 0xF068B, + Replay28 = 0xF068C, + Replay32 = 0xF068D, + SendPerson16 = 0xF068E, + SendPerson20 = 0xF068F, + SendPerson24 = 0xF0690, + SquareDovetailJoint12 = 0xF0691, + SquareDovetailJoint16 = 0xF0692, + SquareDovetailJoint20 = 0xF0693, + SquareDovetailJoint24 = 0xF0694, + SquareDovetailJoint28 = 0xF0695, + SquareDovetailJoint32 = 0xF0696, + SquareDovetailJoint48 = 0xF0697, + TableCursor16 = 0xF0698, + TableCursor20 = 0xF0699, + TableCursor24 = 0xF069A, + TransparencySquare20 = 0xF069B, + TransparencySquare24 = 0xF069C, + ArrowCollapseAll16 = 0xF069D, + ArrowExpandAll16 = 0xF069E, + ArrowExpandAll20 = 0xF069F, + ArrowExpandAll24 = 0xF06A0, + ChatArrowBackDown16 = 0xF06A1, + ChatArrowBackDown20 = 0xF06A2, + ChatArrowBackDown24 = 0xF06A3, + ChatArrowBackDown28 = 0xF06A4, + ChatArrowBackDown32 = 0xF06A5, + ChatArrowBackDown48 = 0xF06A6, + DesktopArrowDown32 = 0xF06A7, + EditLineHorizontal320 = 0xF06A8, + EditLineHorizontal324 = 0xF06A9, + GiftOpen32 = 0xF06AA, + Prompt16 = 0xF06AB, + Prompt20 = 0xF06AC, + Prompt24 = 0xF06AD, + Prompt28 = 0xF06AE, + Prompt32 = 0xF06AF, + Prompt48 = 0xF06B0, + SearchSparkle16 = 0xF06B1, + SearchSparkle20 = 0xF06B2, + SearchSparkle24 = 0xF06B3, + SearchSparkle28 = 0xF06B4, + SearchSparkle32 = 0xF06B5, + SearchSparkle48 = 0xF06B6, + SlideTextCall16 = 0xF06B7, + SlideTextCall20 = 0xF06B8, + SlideTextCall24 = 0xF06B9, + SlideTextCall28 = 0xF06BA, + SlideTextCall48 = 0xF06BB, + SlideTextCursor20 = 0xF06BC, + SlideTextCursor24 = 0xF06BD, + VehicleMotorcycle16 = 0xF06BE, + VehicleMotorcycle20 = 0xF06BF, + VehicleMotorcycle24 = 0xF06C0, + VehicleMotorcycle28 = 0xF06C1, + VehicleMotorcycle32 = 0xF06C2, + VehicleMotorcycle48 = 0xF06C3, + AccessibilityMore16 = 0xF06C4, + AccessibilityMore20 = 0xF06C5, + AccessibilityMore24 = 0xF06C6, + Battery028 = 0xF06C7, + Battery032 = 0xF06C8, + Battery128 = 0xF06C9, + Battery132 = 0xF06CA, + Battery1028 = 0xF06CB, + Battery1032 = 0xF06CC, + Battery228 = 0xF06CD, + Battery232 = 0xF06CE, + Battery328 = 0xF06CF, + Battery332 = 0xF06D0, + Battery428 = 0xF06D1, + Battery432 = 0xF06D2, + Battery528 = 0xF06D3, + Battery532 = 0xF06D4, + Battery628 = 0xF06D5, + Battery632 = 0xF06D6, + Battery728 = 0xF06D7, + Battery732 = 0xF06D8, + Battery828 = 0xF06D9, + Battery832 = 0xF06DA, + Battery928 = 0xF06DB, + Battery932 = 0xF06DC, + BatteryCharge28 = 0xF06DD, + BatteryCharge32 = 0xF06DE, + CoinStack16 = 0xF06DF, + CoinStack20 = 0xF06E0, + CoinStack24 = 0xF06E1, + DatabaseArrowUp16 = 0xF06E2, + PaintBrush12 = 0xF06E7, + PanelRight12 = 0xF06E8, + PeopleEdit32 = 0xF06E9, + PersonMail32 = 0xF06EA, + PuzzlePiece12 = 0xF06EB, + GameChat20 = 0xF06EC, + PersonHome16 = 0xF06ED, + PersonHome20 = 0xF06EE, + PersonHome24 = 0xF06EF, + PersonHome28 = 0xF06F0, + PersonHome32 = 0xF06F1, + PersonHome48 = 0xF06F2, + Teaching20 = 0xF06F3, + EditLock16 = 0xF06F4, + EditLock20 = 0xF06F5, + EditLock24 = 0xF06F6, + LayoutRowTwoSettings20 = 0xF06F7, + LayoutRowTwoSettings24 = 0xF06F8, + LayoutRowTwoSettings28 = 0xF06F9, + LayoutRowTwoSettings32 = 0xF06FA, + ShieldAdd28 = 0xF06FB, + ShieldAdd32 = 0xF06FC, + ShieldAdd48 = 0xF06FD, + ShieldCheckmark32 = 0xF06FE, + ShieldTask32 = 0xF06FF, + Toolbox32 = 0xF0700, + WarningLockOpen16 = 0xF0701, + WarningLockOpen20 = 0xF0702, + WarningLockOpen24 = 0xF0703, + PersonBoardAdd20 = 0xF0704, + PersonSquareAdd16 = 0xF0705, + PersonSquareAdd20 = 0xF0706, + PersonSquareAdd24 = 0xF0707, + Airplane16 = 0xF0708, + Airplane28 = 0xF0709, + Airplane32 = 0xF070A, + Airplane48 = 0xF070B, + GlobeOff12 = 0xF070C, + GlobeOff16 = 0xF070D, + GlobeOff20 = 0xF070E, + GlobeOff24 = 0xF070F, + GlobeOff28 = 0xF0710, + GlobeOff32 = 0xF0711, + GlobeOff48 = 0xF0712, + HatGraduation32 = 0xF0713, + HatGraduation48 = 0xF0714, + PersonBoardAdd16 = 0xF0715, + PersonBoardAdd24 = 0xF0716, + PersonBoardAdd28 = 0xF0717, + PersonBoardAdd32 = 0xF0718, + ShoppingBag28 = 0xF0719, + ShoppingBag32 = 0xF071A, + ShoppingBag48 = 0xF071B, + ShoppingBagTag16 = 0xF071C, + ShoppingBagTag28 = 0xF071D, + ShoppingBagTag32 = 0xF071E, + ShoppingBagTag48 = 0xF071F, + Teaching16 = 0xF0720, + Teaching24 = 0xF0721, + Teaching28 = 0xF0722, + Teaching32 = 0xF0723, + Teaching48 = 0xF0724, + WindowBrush20 = 0xF0725, + WindowBrush24 = 0xF0726, + WindowColumnOneFourthLeft20 = 0xF0727, + ArrowSyncCircle28 = 0xF072A, + ArrowSyncCircle32 = 0xF072B, + ArrowSyncCircle48 = 0xF072C, + CalendarArrowRepeatAll16 = 0xF072D, + CalendarArrowRepeatAll20 = 0xF072E, + CalendarArrowRepeatAll24 = 0xF072F, + CalendarArrowRepeatAll28 = 0xF0730, + CalendarArrowRepeatAll32 = 0xF0731, + CalendarArrowRepeatAll48 = 0xF0732, + CoinMultiple28 = 0xF0733, + CoinMultiple32 = 0xF0734, + CoinMultiple48 = 0xF0735, + BinFull48 = 0xF0736, + ClockToolbox32 = 0xF0737, + DatabaseSearch32 = 0xF0738, + DocumentGlobe20 = 0xF0739, + DocumentGlobe24 = 0xF073A, + FormSparkle20 = 0xF073B, + LineStyleSketch16 = 0xF073C, + LineStyleSketch20 = 0xF073D, + LineStyleSketch24 = 0xF073E, + LineStyleSketch28 = 0xF073F, + LineStyleSketch32 = 0xF0740, + Microscope32 = 0xF0741, + PuzzlePiece28 = 0xF0742, + PuzzlePiece32 = 0xF0743, + PuzzlePiece48 = 0xF0744, + Reward32 = 0xF0745, + TabAdd32 = 0xF0746, + AddCircle48 = 0xF0747, + ApprovalsApp48 = 0xF0748, + ClipboardTextEdit48 = 0xF0749, + DesignIdeas28 = 0xF074A, + DesignIdeas32 = 0xF074B, + DesignIdeas48 = 0xF074C, + DocumentFolder28 = 0xF074D, + DocumentFolder32 = 0xF074E, + DocumentFolder48 = 0xF074F, + EyeOff32 = 0xF0750, + LearningApp16 = 0xF0751, + Receipt48 = 0xF0752, + VideoBluetooth16 = 0xF0753, + VideoBluetooth20 = 0xF0754, + VideoBluetooth24 = 0xF0755, + VideoBluetooth28 = 0xF0756, + VideoBluetooth32 = 0xF0757, + VideoBluetooth48 = 0xF0758, + VideoUsb16 = 0xF0759, + VideoUsb20 = 0xF075A, + VideoUsb24 = 0xF075B, + VideoUsb28 = 0xF075C, + VideoUsb32 = 0xF075D, + VideoUsb48 = 0xF075E, + ArrowCircleUpLeft16 = 0xF075F, + ArrowCircleUpRight16 = 0xF0760, + BuildingCheckmark16 = 0xF0761, + BuildingCheckmark20 = 0xF0762, + ClockAlarm48 = 0xF0763, + ClothesHanger12 = 0xF0764, + ClothesHanger16 = 0xF0765, + ClothesHanger20 = 0xF0766, + ClothesHanger24 = 0xF0767, + CommentQuote16 = 0xF0768, + CommentQuote20 = 0xF0769, + CommentQuote24 = 0xF076A, + CommentQuote28 = 0xF076B, + CommentText16 = 0xF076C, + CommentText20 = 0xF076D, + CommentText24 = 0xF076E, + CommentText28 = 0xF076F, + CommentText32 = 0xF0770, + CommentText48 = 0xF0771, + Glance16 = 0xF0772, + Glance28 = 0xF0773, + Glance32 = 0xF0774, + Glance48 = 0xF0775, + GlanceHorizontal28 = 0xF0776, + GlanceHorizontal48 = 0xF0777, + Megaphone12 = 0xF0778, + MicLink16 = 0xF0779, + MicLink20 = 0xF077A, + MicLink24 = 0xF077B, + MicLink28 = 0xF077C, + MicLink32 = 0xF077D, + MicLink48 = 0xF077E, + PenSync16 = 0xF077F, + PenSync20 = 0xF0780, + PenSync24 = 0xF0781, + PenSync28 = 0xF0782, + PenSync32 = 0xF0783, + PenSync48 = 0xF0784, + PeopleLink16 = 0xF0785, + PeopleLink20 = 0xF0786, + PeopleLink24 = 0xF0787, + PeopleLink28 = 0xF0788, + PeopleLink32 = 0xF0789, + PeopleLink48 = 0xF078A, + PeopleQueue28 = 0xF078B, + PeopleQueue32 = 0xF078C, + PeopleQueue48 = 0xF078D, + PersonHeadHint16 = 0xF078E, + PersonHeadHint20 = 0xF078F, + PersonHeadHint24 = 0xF0790, + PersonSoundSpatial16 = 0xF0791, + PersonSoundSpatial20 = 0xF0792, + PersonSoundSpatial24 = 0xF0793, + PersonSoundSpatial28 = 0xF0794, + PersonSoundSpatial32 = 0xF0795, + PersonSoundSpatial48 = 0xF0796, + SoundWaveCircle16 = 0xF0797, + SoundWaveCircle28 = 0xF0798, + SoundWaveCircle32 = 0xF0799, + SoundWaveCircle48 = 0xF079A, + SoundWaveCircleSparkle16 = 0xF079B, + SoundWaveCircleSparkle20 = 0xF079C, + SoundWaveCircleSparkle24 = 0xF079D, + SoundWaveCircleSparkle28 = 0xF079E, + SoundWaveCircleSparkle32 = 0xF079F, + SoundWaveCircleSparkle48 = 0xF07A0, + ArrowDownRight16 = 0xF07A1, + ArrowDownRight20 = 0xF07A2, + ArrowDownRight24 = 0xF07A3, + ArrowDownRight32 = 0xF07A4, + ArrowDownRight48 = 0xF07A5, + ArrowRepeatAll28 = 0xF07A6, + ArrowRepeatAll48 = 0xF07A7, + Attach28 = 0xF07A8, + Attach48 = 0xF07A9, + CalendarMention16 = 0xF07AA, + CalendarPerson32 = 0xF07AB, + CommentMultipleMention16 = 0xF07AC, + CommentMultipleMention20 = 0xF07AD, + DocumentText28 = 0xF07AE, + DocumentText32 = 0xF07AF, + DocumentText48 = 0xF07B0, + EqualCircle16 = 0xF07B1, + FolderDocument16 = 0xF07B2, + FolderDocument20 = 0xF07B3, + FolderDocument24 = 0xF07B4, + FolderDocument28 = 0xF07B5, + MailInbox32 = 0xF07B6, + MailInboxPerson16 = 0xF07B7, + MailInboxPerson20 = 0xF07B8, + MailInboxPerson32 = 0xF07B9, + PlugConnected28 = 0xF07BA, + PlugConnected32 = 0xF07BB, + PlugConnected48 = 0xF07BC, + ArrowBounce12 = 0xF07BD, + ArrowBounce28 = 0xF07BE, + ArrowBounce48 = 0xF07BF, + ArrowDownLeft12 = 0xF07C0, + ArrowDownLeft28 = 0xF07C1, + ArrowFlowDiagonalUpRight12 = 0xF07C2, + ArrowFlowDiagonalUpRight28 = 0xF07C3, + ArrowFlowDiagonalUpRight48 = 0xF07C4, + ArrowUpRight12 = 0xF07C5, + ArrowUpRight28 = 0xF07C6, + ArrowUpRightDashes12 = 0xF07C7, + ArrowUpRightDashes20 = 0xF07C8, + ArrowUpRightDashes24 = 0xF07C9, + ArrowUpRightDashes28 = 0xF07CA, + ArrowUpRightDashes32 = 0xF07CB, + ArrowUpRightDashes48 = 0xF07CC, + ArrowWrap32 = 0xF07CD, + ArrowWrapUpToDown20 = 0xF07CE, + ArrowWrapUpToDown32 = 0xF07CF, + CoinMultiple16 = 0xF07D0, + CoinMultiple20 = 0xF07D1, + CoinMultiple24 = 0xF07D2, + CommentBadge16 = 0xF07D3, + CommentBadge20 = 0xF07D4, + CommentBadge24 = 0xF07D5, + DataUsage28 = 0xF07D6, + DataUsage32 = 0xF07D7, + DataUsage48 = 0xF07D8, + DataUsageCheckmark16 = 0xF07D9, + DataUsageCheckmark20 = 0xF07DA, + DataUsageCheckmark24 = 0xF07DB, + DataUsageCheckmark28 = 0xF07DC, + DataUsageCheckmark32 = 0xF07DD, + DataUsageCheckmark48 = 0xF07DE, + LineHorizontal1DashDotDash20 = 0xF07DF, + LineHorizontal1Dot20 = 0xF07E0, + LineHorizontal316 = 0xF07E1, + LineHorizontal324 = 0xF07E2, + LineHorizontal328 = 0xF07E3, + LineHorizontal332 = 0xF07E4, + LineHorizontal348 = 0xF07E5, + Navigation28 = 0xF07E6, + Navigation32 = 0xF07E7, + Navigation48 = 0xF07E8, + PauseCircle16 = 0xF07E9, + Stack28 = 0xF07EA, + Stack48 = 0xF07EB, + StackOff16 = 0xF07EC, + StackOff20 = 0xF07ED, + StackOff24 = 0xF07EE, + StackOff28 = 0xF07EF, + StackOff32 = 0xF07F0, + StackOff48 = 0xF07F1, + TextBulletListSquare28 = 0xF07F2, + Textbox28 = 0xF07F3, + Textbox32 = 0xF07F4, + Textbox48 = 0xF07F5, + TextboxCheckmark16 = 0xF07F6, + TextboxCheckmark20 = 0xF07F7, + TextboxCheckmark24 = 0xF07F8, + TextboxCheckmark28 = 0xF07F9, + TextboxCheckmark32 = 0xF07FA, + TextboxCheckmark48 = 0xF07FB, + DocumentOnePageMultipleSparkle16 = 0xF07FC, + DocumentOnePageMultipleSparkle20 = 0xF07FD, + DocumentOnePageMultipleSparkle24 = 0xF07FE, + AnimalPawPrint16 = 0xF07FF, + AnimalPawPrint20 = 0xF0800, + AnimalPawPrint24 = 0xF0801, + AnimalPawPrint28 = 0xF0802, + AnimalPawPrint32 = 0xF0803, + AnimalPawPrint48 = 0xF0804, + ArrowClockwiseDashes28 = 0xF0805, + ArrowClockwiseDashes48 = 0xF0806, + ArrowClockwiseDashesSettings16 = 0xF0807, + ArrowClockwiseDashesSettings20 = 0xF0808, + ArrowClockwiseDashesSettings24 = 0xF0809, + ArrowClockwiseDashesSettings28 = 0xF080A, + ArrowClockwiseDashesSettings32 = 0xF080B, + ArrowClockwiseDashesSettings48 = 0xF080C, + ChatOff16 = 0xF080D, + Connected24 = 0xF080E, + Connected32 = 0xF080F, + SquareTextArrowRepeatAll16 = 0xF0810, + SquareTextArrowRepeatAll20 = 0xF0811, + SquareTextArrowRepeatAll24 = 0xF0812, + Translate32 = 0xF0813, + Brain20 = 0xF0814, + Brain24 = 0xF0815, + BrainSparkle20 = 0xF0816, + CircleHint28 = 0xF0817, + CircleHint32 = 0xF0818, + CircleHint48 = 0xF0819, + CircleHintCursor16 = 0xF081A, + CircleHintCursor20 = 0xF081B, + CircleHintCursor24 = 0xF081C, + CircleHintDismiss16 = 0xF081D, + CircleHintDismiss20 = 0xF081E, + CircleHintDismiss24 = 0xF081F, + CircleMultipleConcentric16 = 0xF0820, + CircleMultipleConcentric20 = 0xF0821, + CircleMultipleConcentric24 = 0xF0822, + DatabaseCheckmark16 = 0xF0823, + DatabaseCheckmark20 = 0xF0824, + DatabaseCheckmark24 = 0xF0825, + Directions28 = 0xF0826, + Directions32 = 0xF0827, + Directions48 = 0xF0828, + FolderOpen28 = 0xF0829, + FolderOpenDown16 = 0xF082A, + FolderOpenDown20 = 0xF082B, + FolderOpenDown24 = 0xF082C, + FolderOpenDown28 = 0xF082D, + HdOff16 = 0xF082E, + HdOff20 = 0xF082F, + HdOff24 = 0xF0830, + MailInbox48 = 0xF0831, + MailInboxPerson48 = 0xF0832, + MailReadBriefcase20 = 0xF0833, + MailReadBriefcase24 = 0xF0834, + RowChild16 = 0xF0835, + RowChild20 = 0xF0836, + RowChild24 = 0xF0837, + RowChild28 = 0xF0838, + RowChild32 = 0xF0839, + Bot16 = 0xF083A, + Bot28 = 0xF083B, + Bot32 = 0xF083C, + Bot48 = 0xF083D, + BotAdd16 = 0xF083E, + BotAdd28 = 0xF083F, + BotAdd32 = 0xF0840, + BotAdd48 = 0xF0841, + BotSparkle16 = 0xF0842, + BotSparkle28 = 0xF0843, + BotSparkle32 = 0xF0844, + BotSparkle48 = 0xF0845, + ChatHistory20 = 0xF0846, + ChatHistory24 = 0xF0847, + ChatHistory28 = 0xF0848, + CircleMultipleHintCheckmark20 = 0xF0849, + CircleMultipleHintCheckmark24 = 0xF084A, + CircleMultipleHintCheckmark28 = 0xF084B, + CircleSparkle16 = 0xF084C, + CircleSparkle20 = 0xF084D, + CircleSparkle24 = 0xF084E, + CircleSparkle28 = 0xF084F, + CircleSparkle32 = 0xF0850, + CircleSparkle48 = 0xF0851, + Copy28 = 0xF0852, + DocumentSparkle16 = 0xF0853, + DocumentSparkle20 = 0xF0854, + DocumentSparkle24 = 0xF0855, + DocumentSparkle28 = 0xF0856, + DocumentSparkle32 = 0xF0857, + DocumentSparkle48 = 0xF0858, + HomeEmpty20 = 0xF0859, + HomeEmpty24 = 0xF085A, + HomeEmpty28 = 0xF085B, + PaintBucketBrush16 = 0xF085C, + PaintBucketBrush20 = 0xF085D, + PaintBucketBrush24 = 0xF085E, + PaintBucketBrush28 = 0xF085F, + ReOrderVertical16 = 0xF0860, + ReOrderVertical20 = 0xF0861, + ReOrderVertical24 = 0xF0862, + Savings32 = 0xF0863, + ShareScreenStart16 = 0xF0864, + WeatherMoon32 = 0xF0865, + LocationCheckmark12 = 0xF0866, + LocationCheckmark16 = 0xF0867, + LocationCheckmark20 = 0xF0868, + LocationCheckmark24 = 0xF0869, + LocationCheckmark48 = 0xF086A, } + +#pragma warning restore CS1591 diff --git a/src/Wpf.Ui/Controls/SymbolRegular.cs b/src/Wpf.Ui/Controls/SymbolRegular.cs index a60740fa4..1718746c7 100644 --- a/src/Wpf.Ui/Controls/SymbolRegular.cs +++ b/src/Wpf.Ui/Controls/SymbolRegular.cs @@ -6,9 +6,10 @@ namespace Wpf.Ui.Controls; /// -/// Represents a list of regular Fluent System Icons v.1.1.233. +/// Represents a list of regular Fluent System Icons v.1.1.271. /// May be converted to using GetGlyph() or to using GetString() /// +#pragma warning disable CS1591 public enum SymbolRegular { /// @@ -17,6 +18,7 @@ public enum SymbolRegular Empty = 0x0, // Automatically generated, may contain bugs. + AccessTime20 = 0xE000, Accessibility32 = 0xE001, Accessibility48 = 0xE002, @@ -7824,4 +7826,595 @@ public enum SymbolRegular SpatulaSpoon28 = 0xF0599, SpatulaSpoon32 = 0xF059A, SpatulaSpoon48 = 0xF059B, + AppsSettings16 = 0xF059C, + AppsSettings20 = 0xF059D, + AppsShield16 = 0xF059E, + AppsShield20 = 0xF059F, + ArrowUpload32 = 0xF05A0, + CalendarEdit32 = 0xF05A1, + DataBarVerticalArrowDown16 = 0xF05A2, + DataBarVerticalArrowDown20 = 0xF05A3, + DataBarVerticalArrowDown24 = 0xF05A4, + HapticStrong16 = 0xF05A5, + HapticStrong20 = 0xF05A6, + HapticStrong24 = 0xF05A7, + HapticWeak16 = 0xF05A8, + HapticWeak20 = 0xF05A9, + HapticWeak24 = 0xF05AA, + HexagonSparkle20 = 0xF05AB, + HexagonSparkle24 = 0xF05AC, + MailEdit32 = 0xF05AD, + Password32 = 0xF05AE, + Password48 = 0xF05AF, + PasswordClock48 = 0xF05B0, + PasswordReset48 = 0xF05B1, + PeopleEye16 = 0xF05B2, + PeopleEye20 = 0xF05B3, + PinGlobe16 = 0xF05B4, + PinGlobe20 = 0xF05B5, + Run28 = 0xF05B6, + Run32 = 0xF05B7, + Run48 = 0xF05B8, + TabGroup16 = 0xF05B9, + TabGroup20 = 0xF05BA, + TabGroup24 = 0xF05BB, + Book28 = 0xF05BC, + Book48 = 0xF05BD, + CameraArrowUp16 = 0xF05BE, + CameraArrowUp20 = 0xF05BF, + CameraArrowUp24 = 0xF05C0, + ChatSettings16 = 0xF05C1, + CircleHighlight20 = 0xF05C2, + CircleHighlight24 = 0xF05C3, + CircleHint24 = 0xF05C4, + CircleShadow20 = 0xF05C5, + CircleShadow24 = 0xF05C6, + ContentView16 = 0xF05C7, + DoubleTapSwipeDown16 = 0xF05C8, + DoubleTapSwipeUp16 = 0xF05C9, + FlashSparkle16 = 0xF05CA, + LocationRipple12 = 0xF05CB, + SearchSquare16 = 0xF05CC, + SettingsChat16 = 0xF05CD, + ShareMultiple16 = 0xF05CE, + ShareMultiple20 = 0xF05CF, + ShareMultiple24 = 0xF05D0, + SlidePlay20 = 0xF05D1, + SlidePlay24 = 0xF05D2, + ArrowTurnRight16 = 0xF05D3, + ChartMultiple16 = 0xF05D4, + Column24 = 0xF05D5, + DataPie16 = 0xF05D6, + LayoutColumnTwo32 = 0xF05D7, + LayoutRowTwo32 = 0xF05D8, + MailCopy32 = 0xF05D9, + PaintBrushSparkle20 = 0xF05DA, + PaintBrushSparkle24 = 0xF05DB, + PeopleCommunity12 = 0xF05DC, + PersonBoard12 = 0xF05DD, + PersonTentative16 = 0xF05DE, + PersonTentative20 = 0xF05DF, + PersonTentative24 = 0xF05E0, + TabDesktopSearch16 = 0xF05E1, + TabDesktopSearch20 = 0xF05E2, + TabDesktopSearch24 = 0xF05E3, + TableSparkle20 = 0xF05E4, + TableSparkle24 = 0xF05E5, + Comment32 = 0xF05E6, + CommentAdd32 = 0xF05E7, + CropArrowRotate16 = 0xF05E8, + CropArrowRotate20 = 0xF05E9, + CropArrowRotate24 = 0xF05EA, + DesktopOff20 = 0xF05EB, + DesktopOff24 = 0xF05EC, + Food28 = 0xF05ED, + Food32 = 0xF05EE, + Food48 = 0xF05EF, + LayerDiagonalAdd24 = 0xF05F0, + MailAlert32 = 0xF05F1, + MailArrowClockwise32 = 0xF05F2, + PersonSupport32 = 0xF05F3, + TagOff16 = 0xF05F4, + TextColumnOneWideLightning16 = 0xF05F5, + WalletCreditCard28 = 0xF05F6, + WalletCreditCard48 = 0xF05F7, + BreakoutRoom32 = 0xF05F8, + CardUiPortraitFlip16 = 0xF05F9, + CardUiPortraitFlip20 = 0xF05FA, + CardUiPortraitFlip24 = 0xF05FB, + Cursor28 = 0xF05FC, + Cursor32 = 0xF05FD, + LayoutRowTwo28 = 0xF05FE, + LayoutRowTwo48 = 0xF05FF, + NotepadSparkle16 = 0xF0600, + NotepadSparkle20 = 0xF0601, + NotepadSparkle24 = 0xF0602, + NotepadSparkle28 = 0xF0603, + NotepadSparkle32 = 0xF0604, + PaintBrush28 = 0xF0605, + PaintBrushSubtract16 = 0xF0606, + PaintBrushSubtract20 = 0xF0607, + PaintBrushSubtract24 = 0xF0608, + PaintBrushSubtract28 = 0xF0609, + PaintBrushSubtract32 = 0xF060A, + PlayCircleSparkle16 = 0xF060B, + PlayCircleSparkle20 = 0xF060C, + PlayCircleSparkle24 = 0xF060D, + Replay16 = 0xF060E, + Replay24 = 0xF060F, + Replay28 = 0xF0610, + Replay32 = 0xF0611, + SendPerson16 = 0xF0612, + SendPerson20 = 0xF0613, + SendPerson24 = 0xF0614, + SquareDovetailJoint12 = 0xF0615, + SquareDovetailJoint16 = 0xF0616, + SquareDovetailJoint20 = 0xF0617, + SquareDovetailJoint24 = 0xF0618, + SquareDovetailJoint28 = 0xF0619, + SquareDovetailJoint32 = 0xF061A, + SquareDovetailJoint48 = 0xF061B, + TableCursor16 = 0xF061C, + TableCursor20 = 0xF061D, + TableCursor24 = 0xF061E, + TransparencySquare20 = 0xF061F, + TransparencySquare24 = 0xF0620, + ArrowCollapseAll16 = 0xF0621, + ArrowExpandAll16 = 0xF0622, + ArrowExpandAll20 = 0xF0623, + ArrowExpandAll24 = 0xF0624, + ChatArrowBackDown16 = 0xF0625, + ChatArrowBackDown20 = 0xF0626, + ChatArrowBackDown24 = 0xF0627, + ChatArrowBackDown28 = 0xF0628, + ChatArrowBackDown32 = 0xF0629, + ChatArrowBackDown48 = 0xF062A, + DesktopArrowDown32 = 0xF062B, + EditLineHorizontal320 = 0xF062C, + EditLineHorizontal324 = 0xF062D, + GiftOpen32 = 0xF062E, + Prompt16 = 0xF062F, + Prompt20 = 0xF0630, + Prompt24 = 0xF0631, + Prompt28 = 0xF0632, + Prompt32 = 0xF0633, + Prompt48 = 0xF0634, + SearchSparkle16 = 0xF0635, + SearchSparkle20 = 0xF0636, + SearchSparkle24 = 0xF0637, + SearchSparkle28 = 0xF0638, + SearchSparkle32 = 0xF0639, + SearchSparkle48 = 0xF063A, + SlideTextCall16 = 0xF063B, + SlideTextCall20 = 0xF063C, + SlideTextCall24 = 0xF063D, + SlideTextCall28 = 0xF063E, + SlideTextCall48 = 0xF063F, + SlideTextCursor20 = 0xF0640, + SlideTextCursor24 = 0xF0641, + VehicleMotorcycle16 = 0xF0642, + VehicleMotorcycle20 = 0xF0643, + VehicleMotorcycle24 = 0xF0644, + VehicleMotorcycle28 = 0xF0645, + VehicleMotorcycle32 = 0xF0646, + VehicleMotorcycle48 = 0xF0647, + AccessibilityMore16 = 0xF0648, + AccessibilityMore20 = 0xF0649, + AccessibilityMore24 = 0xF064A, + Battery028 = 0xF064B, + Battery032 = 0xF064C, + Battery128 = 0xF064D, + Battery132 = 0xF064E, + Battery1028 = 0xF064F, + Battery1032 = 0xF0650, + Battery228 = 0xF0651, + Battery232 = 0xF0652, + Battery328 = 0xF0653, + Battery332 = 0xF0654, + Battery428 = 0xF0655, + Battery432 = 0xF0656, + Battery528 = 0xF0657, + Battery532 = 0xF0658, + Battery628 = 0xF0659, + Battery632 = 0xF065A, + Battery728 = 0xF065B, + Battery732 = 0xF065C, + Battery828 = 0xF065D, + Battery832 = 0xF065E, + Battery928 = 0xF065F, + Battery932 = 0xF0660, + BatteryCharge28 = 0xF0661, + BatteryCharge32 = 0xF0662, + CoinStack16 = 0xF0663, + CoinStack20 = 0xF0664, + CoinStack24 = 0xF0665, + DatabaseArrowUp16 = 0xF0666, + PaintBrush12 = 0xF0667, + PanelRight12 = 0xF0668, + PeopleEdit32 = 0xF0669, + PersonMail32 = 0xF066A, + PuzzlePiece12 = 0xF066B, + GameChat20 = 0xF066C, + PersonHome16 = 0xF066D, + PersonHome20 = 0xF066E, + PersonHome24 = 0xF066F, + PersonHome28 = 0xF0670, + PersonHome32 = 0xF0671, + PersonHome48 = 0xF0672, + Teaching20 = 0xF0673, + EditLock16 = 0xF0674, + EditLock20 = 0xF0675, + EditLock24 = 0xF0676, + LayoutRowTwoSettings20 = 0xF0677, + LayoutRowTwoSettings24 = 0xF0678, + LayoutRowTwoSettings28 = 0xF0679, + LayoutRowTwoSettings32 = 0xF067A, + ShieldAdd28 = 0xF0680, + ShieldAdd32 = 0xF0681, + ShieldAdd48 = 0xF0682, + ShieldCheckmark32 = 0xF0683, + ShieldTask32 = 0xF0684, + Toolbox32 = 0xF0685, + WarningLockOpen16 = 0xF0686, + WarningLockOpen20 = 0xF0687, + WarningLockOpen24 = 0xF0688, + PersonBoardAdd20 = 0xF0689, + PersonSquareAdd16 = 0xF068A, + PersonSquareAdd20 = 0xF068B, + PersonSquareAdd24 = 0xF068C, + Airplane16 = 0xF068D, + Airplane28 = 0xF068E, + Airplane32 = 0xF068F, + Airplane48 = 0xF0690, + GlobeOff12 = 0xF0691, + GlobeOff16 = 0xF0692, + GlobeOff20 = 0xF0693, + GlobeOff24 = 0xF0694, + GlobeOff28 = 0xF0695, + GlobeOff32 = 0xF0696, + GlobeOff48 = 0xF0697, + HatGraduation32 = 0xF0698, + HatGraduation48 = 0xF0699, + PersonBoardAdd16 = 0xF069A, + PersonBoardAdd24 = 0xF069B, + PersonBoardAdd28 = 0xF069C, + PersonBoardAdd32 = 0xF069D, + ShoppingBag28 = 0xF069E, + ShoppingBag32 = 0xF069F, + ShoppingBag48 = 0xF06A0, + ShoppingBagTag16 = 0xF06A1, + ShoppingBagTag28 = 0xF06A2, + ShoppingBagTag32 = 0xF06A3, + ShoppingBagTag48 = 0xF06A4, + Teaching16 = 0xF06A5, + Teaching24 = 0xF06A6, + Teaching28 = 0xF06A7, + Teaching32 = 0xF06A8, + Teaching48 = 0xF06A9, + WindowBrush20 = 0xF06AA, + WindowBrush24 = 0xF06AB, + WindowColumnOneFourthLeft20 = 0xF06AC, + ArrowSyncCircle28 = 0xF06AD, + ArrowSyncCircle32 = 0xF06AE, + ArrowSyncCircle48 = 0xF06AF, + CalendarArrowRepeatAll16 = 0xF06B0, + CalendarArrowRepeatAll20 = 0xF06B1, + CalendarArrowRepeatAll24 = 0xF06B2, + CalendarArrowRepeatAll28 = 0xF06B3, + CalendarArrowRepeatAll32 = 0xF06B4, + CalendarArrowRepeatAll48 = 0xF06B5, + CoinMultiple28 = 0xF06B6, + CoinMultiple32 = 0xF06B7, + CoinMultiple48 = 0xF06B8, + BinFull48 = 0xF06B9, + ClockToolbox32 = 0xF06BA, + DatabaseSearch32 = 0xF06BB, + DocumentGlobe20 = 0xF06BC, + DocumentGlobe24 = 0xF06BD, + FormSparkle20 = 0xF06BE, + LineStyleSketch16 = 0xF06BF, + LineStyleSketch20 = 0xF06C0, + LineStyleSketch24 = 0xF06C1, + LineStyleSketch28 = 0xF06C2, + LineStyleSketch32 = 0xF06C3, + Microscope32 = 0xF06C4, + PuzzlePiece28 = 0xF06C5, + PuzzlePiece32 = 0xF06C6, + PuzzlePiece48 = 0xF06C7, + Reward32 = 0xF06C8, + TabAdd32 = 0xF06C9, + AddCircle48 = 0xF06CA, + ApprovalsApp48 = 0xF06CB, + ClipboardTextEdit48 = 0xF06CC, + DesignIdeas28 = 0xF06CD, + DesignIdeas32 = 0xF06CE, + DesignIdeas48 = 0xF06CF, + DocumentFolder28 = 0xF06D0, + DocumentFolder32 = 0xF06D1, + DocumentFolder48 = 0xF06D2, + EyeOff32 = 0xF06D3, + LearningApp16 = 0xF06D4, + Receipt48 = 0xF06D5, + VideoBluetooth16 = 0xF06D6, + VideoBluetooth20 = 0xF06D7, + VideoBluetooth24 = 0xF06D8, + VideoBluetooth28 = 0xF06D9, + VideoBluetooth32 = 0xF06DA, + VideoBluetooth48 = 0xF06DB, + VideoUsb16 = 0xF06DC, + VideoUsb20 = 0xF06DD, + VideoUsb24 = 0xF06DE, + VideoUsb28 = 0xF06DF, + VideoUsb32 = 0xF06E0, + VideoUsb48 = 0xF06E1, + ArrowCircleUpLeft16 = 0xF06E2, + ArrowCircleUpRight16 = 0xF06E3, + BuildingCheckmark16 = 0xF06E4, + BuildingCheckmark20 = 0xF06E5, + ClockAlarm48 = 0xF06E6, + ClothesHanger12 = 0xF06E7, + ClothesHanger16 = 0xF06E8, + ClothesHanger20 = 0xF06E9, + ClothesHanger24 = 0xF06EA, + CommentQuote16 = 0xF06EB, + CommentQuote20 = 0xF06EC, + CommentQuote24 = 0xF06ED, + CommentQuote28 = 0xF06EE, + CommentText16 = 0xF06EF, + CommentText20 = 0xF06F0, + CommentText24 = 0xF06F1, + CommentText28 = 0xF06F2, + CommentText32 = 0xF06F3, + CommentText48 = 0xF06F4, + Glance16 = 0xF06F5, + Glance28 = 0xF06F6, + Glance32 = 0xF06F7, + Glance48 = 0xF06F8, + GlanceHorizontal28 = 0xF06F9, + GlanceHorizontal48 = 0xF06FA, + Megaphone12 = 0xF06FB, + MicLink16 = 0xF06FC, + MicLink20 = 0xF06FD, + MicLink24 = 0xF06FE, + MicLink28 = 0xF06FF, + MicLink32 = 0xF0700, + MicLink48 = 0xF0701, + PenSync16 = 0xF0702, + PenSync20 = 0xF0703, + PenSync24 = 0xF0704, + PenSync28 = 0xF0705, + PenSync32 = 0xF0706, + PenSync48 = 0xF0707, + PeopleLink16 = 0xF0708, + PeopleLink20 = 0xF0709, + PeopleLink24 = 0xF070A, + PeopleLink28 = 0xF070B, + PeopleLink32 = 0xF070C, + PeopleLink48 = 0xF070D, + PeopleQueue28 = 0xF070E, + PeopleQueue32 = 0xF070F, + PeopleQueue48 = 0xF0710, + PersonHeadHint16 = 0xF0711, + PersonHeadHint20 = 0xF0712, + PersonHeadHint24 = 0xF0713, + PersonSoundSpatial16 = 0xF0714, + PersonSoundSpatial20 = 0xF0715, + PersonSoundSpatial24 = 0xF0716, + PersonSoundSpatial28 = 0xF0717, + PersonSoundSpatial32 = 0xF0718, + PersonSoundSpatial48 = 0xF0719, + SoundWaveCircle16 = 0xF071A, + SoundWaveCircle28 = 0xF071B, + SoundWaveCircle32 = 0xF071C, + SoundWaveCircle48 = 0xF071D, + SoundWaveCircleSparkle16 = 0xF071E, + SoundWaveCircleSparkle20 = 0xF071F, + SoundWaveCircleSparkle24 = 0xF0720, + SoundWaveCircleSparkle28 = 0xF0721, + SoundWaveCircleSparkle32 = 0xF0722, + SoundWaveCircleSparkle48 = 0xF0723, + ArrowDownRight16 = 0xF0724, + ArrowDownRight20 = 0xF0725, + ArrowDownRight24 = 0xF0726, + ArrowDownRight32 = 0xF0727, + ArrowDownRight48 = 0xF0728, + ArrowRepeatAll28 = 0xF0729, + ArrowRepeatAll48 = 0xF072A, + Attach28 = 0xF072B, + Attach48 = 0xF072C, + CalendarMention16 = 0xF072D, + CalendarPerson32 = 0xF072E, + CommentMultipleMention16 = 0xF072F, + CommentMultipleMention20 = 0xF0730, + DocumentText28 = 0xF0731, + DocumentText32 = 0xF0732, + DocumentText48 = 0xF0733, + EqualCircle16 = 0xF0734, + FolderDocument16 = 0xF0735, + FolderDocument20 = 0xF0736, + FolderDocument24 = 0xF0737, + FolderDocument28 = 0xF0738, + MailInbox32 = 0xF0739, + MailInboxPerson16 = 0xF073A, + MailInboxPerson20 = 0xF073B, + MailInboxPerson32 = 0xF073C, + PlugConnected28 = 0xF073D, + PlugConnected32 = 0xF073E, + PlugConnected48 = 0xF073F, + ArrowBounce12 = 0xF0740, + ArrowBounce28 = 0xF0741, + ArrowBounce48 = 0xF0742, + ArrowDownLeft12 = 0xF0743, + ArrowDownLeft28 = 0xF0744, + ArrowFlowDiagonalUpRight12 = 0xF0745, + ArrowFlowDiagonalUpRight28 = 0xF0746, + ArrowFlowDiagonalUpRight48 = 0xF0747, + ArrowUpRight12 = 0xF0748, + ArrowUpRight28 = 0xF0749, + ArrowUpRightDashes12 = 0xF074A, + ArrowUpRightDashes20 = 0xF074B, + ArrowUpRightDashes24 = 0xF074C, + ArrowUpRightDashes28 = 0xF074D, + ArrowUpRightDashes32 = 0xF074E, + ArrowUpRightDashes48 = 0xF074F, + ArrowWrap32 = 0xF0750, + ArrowWrapUpToDown20 = 0xF0751, + ArrowWrapUpToDown32 = 0xF0752, + CoinMultiple16 = 0xF0753, + CoinMultiple20 = 0xF0754, + CoinMultiple24 = 0xF0755, + CommentBadge16 = 0xF0756, + CommentBadge20 = 0xF0757, + CommentBadge24 = 0xF0758, + DataUsage28 = 0xF0759, + DataUsage32 = 0xF075A, + DataUsage48 = 0xF075B, + DataUsageCheckmark16 = 0xF075C, + DataUsageCheckmark20 = 0xF075D, + DataUsageCheckmark24 = 0xF075E, + DataUsageCheckmark28 = 0xF075F, + DataUsageCheckmark32 = 0xF0760, + DataUsageCheckmark48 = 0xF0761, + LineHorizontal1DashDotDash20 = 0xF0762, + LineHorizontal1Dot20 = 0xF0763, + LineHorizontal316 = 0xF0764, + LineHorizontal324 = 0xF0765, + LineHorizontal328 = 0xF0766, + LineHorizontal332 = 0xF0767, + LineHorizontal348 = 0xF0768, + Navigation28 = 0xF0769, + Navigation32 = 0xF076A, + Navigation48 = 0xF076B, + PauseCircle16 = 0xF076C, + Stack28 = 0xF076D, + Stack48 = 0xF076E, + StackOff16 = 0xF076F, + StackOff20 = 0xF0770, + StackOff24 = 0xF0771, + StackOff28 = 0xF0772, + StackOff32 = 0xF0773, + StackOff48 = 0xF0774, + TextBulletListSquare28 = 0xF0775, + Textbox28 = 0xF0776, + Textbox32 = 0xF0777, + Textbox48 = 0xF0778, + TextboxCheckmark16 = 0xF0779, + TextboxCheckmark20 = 0xF077A, + TextboxCheckmark24 = 0xF077B, + TextboxCheckmark28 = 0xF077C, + TextboxCheckmark32 = 0xF077D, + TextboxCheckmark48 = 0xF077E, + DocumentOnePageMultipleSparkle16 = 0xF077F, + DocumentOnePageMultipleSparkle20 = 0xF0780, + DocumentOnePageMultipleSparkle24 = 0xF0781, + AnimalPawPrint16 = 0xF0782, + AnimalPawPrint20 = 0xF0783, + AnimalPawPrint24 = 0xF0784, + AnimalPawPrint28 = 0xF0785, + AnimalPawPrint32 = 0xF0786, + AnimalPawPrint48 = 0xF0787, + ArrowClockwiseDashes28 = 0xF0788, + ArrowClockwiseDashes48 = 0xF0789, + ArrowClockwiseDashesSettings16 = 0xF078A, + ArrowClockwiseDashesSettings20 = 0xF078B, + ArrowClockwiseDashesSettings24 = 0xF078C, + ArrowClockwiseDashesSettings28 = 0xF078D, + ArrowClockwiseDashesSettings32 = 0xF078E, + ArrowClockwiseDashesSettings48 = 0xF078F, + ChatOff16 = 0xF0790, + Connected24 = 0xF0791, + Connected32 = 0xF0792, + SquareTextArrowRepeatAll16 = 0xF0793, + SquareTextArrowRepeatAll20 = 0xF0794, + SquareTextArrowRepeatAll24 = 0xF0795, + Translate32 = 0xF0796, + Brain20 = 0xF0797, + Brain24 = 0xF0798, + BrainSparkle20 = 0xF0799, + CircleHint28 = 0xF079A, + CircleHint32 = 0xF079B, + CircleHint48 = 0xF079C, + CircleHintCursor16 = 0xF079D, + CircleHintCursor20 = 0xF079E, + CircleHintCursor24 = 0xF079F, + CircleHintDismiss16 = 0xF07A0, + CircleHintDismiss20 = 0xF07A1, + CircleHintDismiss24 = 0xF07A2, + CircleMultipleConcentric16 = 0xF07A3, + CircleMultipleConcentric20 = 0xF07A4, + CircleMultipleConcentric24 = 0xF07A5, + DatabaseCheckmark16 = 0xF07A6, + DatabaseCheckmark20 = 0xF07A7, + DatabaseCheckmark24 = 0xF07A8, + Directions28 = 0xF07A9, + Directions32 = 0xF07AA, + Directions48 = 0xF07AB, + FolderOpen28 = 0xF07AC, + FolderOpenDown16 = 0xF07AD, + FolderOpenDown20 = 0xF07AE, + FolderOpenDown24 = 0xF07AF, + FolderOpenDown28 = 0xF07B0, + HdOff16 = 0xF07B1, + HdOff20 = 0xF07B2, + HdOff24 = 0xF07B3, + MailInbox48 = 0xF07B4, + MailInboxPerson48 = 0xF07B5, + MailReadBriefcase20 = 0xF07B6, + MailReadBriefcase24 = 0xF07B7, + RowChild16 = 0xF07B8, + RowChild20 = 0xF07B9, + RowChild24 = 0xF07BA, + RowChild28 = 0xF07BB, + RowChild32 = 0xF07BC, + Bot16 = 0xF07BD, + Bot28 = 0xF07BE, + Bot32 = 0xF07BF, + Bot48 = 0xF07C0, + BotAdd16 = 0xF07C1, + BotAdd28 = 0xF07C2, + BotAdd32 = 0xF07C3, + BotAdd48 = 0xF07C4, + BotSparkle16 = 0xF07C5, + BotSparkle28 = 0xF07C6, + BotSparkle32 = 0xF07C7, + BotSparkle48 = 0xF07C8, + ChatHistory20 = 0xF07C9, + ChatHistory24 = 0xF07CA, + ChatHistory28 = 0xF07CB, + CircleMultipleHintCheckmark20 = 0xF07CC, + CircleMultipleHintCheckmark24 = 0xF07CD, + CircleMultipleHintCheckmark28 = 0xF07CE, + CircleSparkle16 = 0xF07CF, + CircleSparkle20 = 0xF07D0, + CircleSparkle24 = 0xF07D1, + CircleSparkle28 = 0xF07D2, + CircleSparkle32 = 0xF07D3, + CircleSparkle48 = 0xF07D4, + Copy28 = 0xF07D5, + DocumentSparkle16 = 0xF07D6, + DocumentSparkle20 = 0xF07D7, + DocumentSparkle24 = 0xF07D8, + DocumentSparkle28 = 0xF07D9, + DocumentSparkle32 = 0xF07DA, + DocumentSparkle48 = 0xF07DB, + HomeEmpty20 = 0xF07DC, + HomeEmpty24 = 0xF07DD, + HomeEmpty28 = 0xF07DE, + PaintBucketBrush16 = 0xF07DF, + PaintBucketBrush20 = 0xF07E0, + PaintBucketBrush24 = 0xF07E1, + PaintBucketBrush28 = 0xF07E2, + ReOrderVertical16 = 0xF07E3, + ReOrderVertical20 = 0xF07E4, + ReOrderVertical24 = 0xF07E5, + Savings32 = 0xF07E6, + ShareScreenStart16 = 0xF07E7, + WeatherMoon32 = 0xF07E8, + LocationCheckmark12 = 0xF07E9, + LocationCheckmark16 = 0xF07EA, + LocationCheckmark20 = 0xF07EB, + LocationCheckmark24 = 0xF07EC, + LocationCheckmark48 = 0xF07ED, } + +#pragma warning restore CS1591 diff --git a/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Filled.ttf b/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Filled.ttf index 21e767087..b7b50993d 100644 Binary files a/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Filled.ttf and b/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Filled.ttf differ diff --git a/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Regular.ttf b/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Regular.ttf index ff12b0654..fc3c648a1 100644 Binary files a/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Regular.ttf and b/src/Wpf.Ui/Resources/Fonts/FluentSystemIcons-Regular.ttf differ