Full Code of InkoreStudios/UI.WPF.Modern for AI

main b9c64494a88d cached
1827 files
16.0 MB
4.3M tokens
6191 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (17,217K chars total). Download the full file to get everything.
Repository: InkoreStudios/UI.WPF.Modern
Branch: main
Commit: b9c64494a88d
Files: 1827
Total size: 16.0 MB

Directory structure:
gitextract_ci3gb112/

├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── 01. problem.yml
│   │   ├── 02. feature.yml
│   │   └── config.yml
│   └── workflows/
│       └── build.yml
├── .gitignore
├── .vscode/
│   └── settings.json
├── Directory.Build.props
├── Directory.Build.targets
├── LICENSE.md
├── README.md
├── assets/
│   └── others/
│       ├── FluentSystemIcons-Filled.json
│       ├── FluentSystemIcons-Regular.json
│       ├── Segoe Fluent Icons.txt
│       └── iNKORE.Pulic.snk
├── docs/
│   ├── index.md
│   └── promotions.md
├── iNKORE.UI.WPF.Modern.sln
├── installer/
│   └── Gallery.aip
├── libraries/
│   ├── Windows.Foundation.FoundationContract.winmd
│   ├── Windows.Foundation.UniversalApiContract.winmd
│   └── Windows.WinMD
├── samples/
│   ├── Acrylic10Example/
│   │   ├── Acrylic10Example.csproj
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── ButtonsOnTitlebar/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── ButtonsOnTitlebar.csproj
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── ExamplePhotoTaker/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── ExamplePhotoTaker.csproj
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── FlyoutExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── FlyoutExample.csproj
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── 完整源码见 Github 仓库.txt
│   ├── NavigationViewExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── NavigationViewExample.csproj
│   │   └── Pages/
│   │       ├── AppsPage.xaml
│   │       ├── AppsPage.xaml.cs
│   │       ├── GamesPage.xaml
│   │       ├── GamesPage.xaml.cs
│   │       ├── HomePage.xaml
│   │       └── HomePage.xaml.cs
│   ├── NoAppXamlTest/
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── NoAppXamlTest.csproj
│   │   └── Program.cs
│   ├── SettingsNavigationTest/
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AppearancePage.xaml
│   │   ├── AppearancePage.xaml.cs
│   │   ├── MainPage.xaml
│   │   ├── MainPage.xaml.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── SettingsNavigationTest.csproj
│   │   └── packages.config
│   ├── StarterKit/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── StarterKit.csproj
│   ├── TransparentNavigationViewExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── TransparentNavigationViewExample.csproj
│   ├── WindowExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── WindowExample.csproj
│   └── WpfApp1/
│       ├── App.xaml
│       ├── App.xaml.cs
│       ├── AssemblyInfo.cs
│       ├── MainWindow.xaml
│       ├── MainWindow.xaml.cs
│       ├── WpfApp1 - Backup.csproj
│       └── WpfApp1.csproj
├── source/
│   ├── iNKORE.UI.WPF.Modern/
│   │   ├── ColorPaletteResources.cs
│   │   ├── Common/
│   │   │   ├── AnimatedIconSource.cs
│   │   │   ├── BitmapIconSource.cs
│   │   │   ├── Converters/
│   │   │   │   ├── BackdropIsSupportedConverter.cs
│   │   │   │   ├── IconSourceToIconElementConverter.cs
│   │   │   │   └── LocalizationConverter.cs
│   │   │   ├── EventRevoker.cs
│   │   │   ├── FontIconSource.cs
│   │   │   ├── IconKeys/
│   │   │   │   ├── FluentSystemIcons.Filled.cs
│   │   │   │   ├── FluentSystemIcons.Regular.cs
│   │   │   │   ├── FluentSystemIcons.cs
│   │   │   │   ├── FontDictionary.cs
│   │   │   │   ├── SegoeFluentIcons.Regular.cs
│   │   │   │   └── SegoeFluentIcons.cs
│   │   │   ├── IconSource.cs
│   │   │   ├── ImageIconSource.cs
│   │   │   ├── PasswordRevealMode.cs
│   │   │   ├── PathIconSource.cs
│   │   │   ├── RatingItemFontInfo.cs
│   │   │   ├── RatingItemInfo.cs
│   │   │   ├── RatingItemPathInfo.cs
│   │   │   ├── ResourceAccessor.cs
│   │   │   ├── ShadowAssist.cs
│   │   │   ├── SimpleVisualStateManager.cs
│   │   │   ├── SymbolIconSource.cs
│   │   │   ├── TypedEventHandler.cs
│   │   │   ├── UIApplication.cs
│   │   │   ├── VisualStateGroupHelper.cs
│   │   │   └── VisualStates.cs
│   │   ├── Controls/
│   │   │   ├── AcrylicElement.cs
│   │   │   ├── AcrylicPanel.cs
│   │   │   ├── AcrylicPanel.xaml
│   │   │   ├── AnimatedBackVisualSource.cs
│   │   │   ├── AnimatedIcon.cs
│   │   │   ├── AnimatedVisualSource.cs
│   │   │   ├── AnimatedVisualSource.xaml
│   │   │   ├── BitmapIcon.cs
│   │   │   ├── ContentPresenterEx.cs
│   │   │   ├── DropShadowPanel.cs
│   │   │   ├── ElevationBorder.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── FontIcon.cs
│   │   │   ├── FontIconFallback.cs
│   │   │   ├── Frame.cs
│   │   │   ├── Frame.xaml
│   │   │   ├── Helpers/
│   │   │   │   ├── CalendarHelper.cs
│   │   │   │   ├── ClipHelper.cs
│   │   │   │   ├── ColumnDefinitionHelper.cs
│   │   │   │   ├── ComboBoxHelper.cs
│   │   │   │   ├── ControlHelper.cs
│   │   │   │   ├── CustomPopupPlacementHelper.cs
│   │   │   │   ├── DataGridHelper.cs
│   │   │   │   ├── DataGridRowHelper.cs
│   │   │   │   ├── DatePickerHelper.cs
│   │   │   │   ├── DecoratorHelper.cs
│   │   │   │   ├── ExpanderAnimationsHelper.cs
│   │   │   │   ├── ExpanderHelper.cs
│   │   │   │   ├── FocusVisualHelper.cs
│   │   │   │   ├── FullscreenHelper.cs
│   │   │   │   ├── HyperlinkHelper.cs
│   │   │   │   ├── ListViewHelper.cs
│   │   │   │   ├── MultiSelectHelper.cs
│   │   │   │   ├── OpeningAnimationHelper.cs
│   │   │   │   ├── PasswordBoxHelper.cs
│   │   │   │   ├── PivotHelper.cs
│   │   │   │   ├── PressHelper.cs
│   │   │   │   ├── RichTextBoxHelper.cs
│   │   │   │   ├── RowDefinitionHelper.cs
│   │   │   │   ├── ScrollBarHelper.cs
│   │   │   │   ├── ScrollBarThumbHelper.cs
│   │   │   │   ├── ScrollViewerHelper.cs
│   │   │   │   ├── SliderAutoToolTipHelper.cs
│   │   │   │   ├── TabControlHelper.cs
│   │   │   │   ├── TabItemHelper.cs
│   │   │   │   ├── TextBlockHelper.cs
│   │   │   │   ├── TextBoxHelper.cs
│   │   │   │   ├── TextControlContentHostHelper.cs
│   │   │   │   ├── TreeViewItemHelper.cs
│   │   │   │   ├── ValidationHelper.cs
│   │   │   │   └── WindowHelper.cs
│   │   │   ├── IconAndText.cs
│   │   │   ├── IconAndText.xaml
│   │   │   ├── IconElement.cs
│   │   │   ├── ImageIcon.cs
│   │   │   ├── ListViewBaseHeaderItem.cs
│   │   │   ├── ListViewHeaderItem.cs
│   │   │   ├── Page.cs
│   │   │   ├── Page.xaml
│   │   │   ├── PathIcon.cs
│   │   │   ├── Primitives/
│   │   │   │   ├── AutoPanningMode.cs
│   │   │   │   ├── BackRequestedEventArgs.cs
│   │   │   │   ├── BindingProxy.cs
│   │   │   │   ├── CoreApplicationViewTitleBar.cs
│   │   │   │   ├── DataGridCellPresenter.cs
│   │   │   │   ├── DebugVisualStateManager.cs
│   │   │   │   ├── MaximizedWindowFixer.cs
│   │   │   │   ├── MenuPopup.cs
│   │   │   │   ├── PanelHelper.cs
│   │   │   │   ├── PivotHeaderScrollViewer.cs
│   │   │   │   ├── PopupEx.cs
│   │   │   │   ├── PopupPositioner.cs
│   │   │   │   ├── ScrollingIndicatorMode.cs
│   │   │   │   ├── ThemeShadowChrome.cs
│   │   │   │   ├── TitleBar.cs
│   │   │   │   ├── TitleBarButton.cs
│   │   │   │   ├── TitleBarButton.xaml
│   │   │   │   ├── TitleBarControl.cs
│   │   │   │   ├── TitleBarControl.xaml
│   │   │   │   └── VisualStateGroupListener.cs
│   │   │   ├── ProjectBadge.cs
│   │   │   ├── ProjectBadge.xaml
│   │   │   ├── ScrollInfoAdapter.cs
│   │   │   ├── ScrollViewerBehavior.cs
│   │   │   ├── ScrollViewerEx.cs
│   │   │   ├── SimpleStackPanel.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── SymbolIcon.cs
│   │   │   ├── TextContextMenu.cs
│   │   │   ├── ThumbEx.cs
│   │   │   ├── ThumbEx.xaml
│   │   │   └── XamlControlsResources.cs
│   │   ├── Helpers/
│   │   │   ├── ColorsHelper.cs
│   │   │   ├── Helper.cs
│   │   │   ├── IconHelper.cs
│   │   │   ├── PackUriHelper.cs
│   │   │   ├── PointUtil.cs
│   │   │   ├── ResourceDictionaryHelper.cs
│   │   │   ├── Styles/
│   │   │   │   ├── AcrylicHelper.cs
│   │   │   │   ├── BackdropHelper.cs
│   │   │   │   ├── CornerHelper.cs
│   │   │   │   └── SnapLayout.cs
│   │   │   ├── ThemeResourceHelper.cs
│   │   │   ├── Utilities.cs
│   │   │   └── WinRTColorHelper.cs
│   │   ├── Input/
│   │   │   ├── FocusInputDeviceKind.cs
│   │   │   ├── FocusManagerEx.cs
│   │   │   ├── GettingFocusEventArgs.cs
│   │   │   ├── GettingFocusHelper.cs
│   │   │   ├── InputHelper.cs
│   │   │   ├── TappedEventHandler.cs
│   │   │   └── TappedRoutedEventArgs.cs
│   │   ├── Markup/
│   │   │   ├── AcrylicBrushExtension.cs
│   │   │   ├── DynamicColorExtension.cs
│   │   │   ├── KeyTimeExtension.cs
│   │   │   ├── StaticColorExtension.cs
│   │   │   ├── StaticResourceExtension.cs
│   │   │   ├── TextContextMenuExtension.cs
│   │   │   └── ThemeResourceExtension.cs
│   │   ├── Media/
│   │   │   ├── Animation/
│   │   │   │   ├── CubicBezierEase.cs
│   │   │   │   ├── DrillInNavigationTransitionInfo.cs
│   │   │   │   ├── EntranceNavigationTransitionInfo.cs
│   │   │   │   ├── FadeInThemeAnimation.cs
│   │   │   │   ├── FadeOutThemeAnimation.cs
│   │   │   │   ├── NavigationAnimation.cs
│   │   │   │   ├── NavigationThemeTransition.cs
│   │   │   │   ├── NavigationTransitionInfo.cs
│   │   │   │   ├── SlideNavigationTransitionInfo.cs
│   │   │   │   ├── SuppressNavigationTransitionInfo.cs
│   │   │   │   ├── Transition.cs
│   │   │   │   └── TransitionCollection.cs
│   │   │   ├── ColorPalette/
│   │   │   │   ├── ColorPalette.cs
│   │   │   │   ├── ColorPaletteEntry.cs
│   │   │   │   └── IColorPaletteEntry.cs
│   │   │   └── Utils/
│   │   │       ├── ColorBlending.cs
│   │   │       ├── ColorScale.cs
│   │   │       ├── ColorTypes.cs
│   │   │       ├── ColorUtils.cs
│   │   │       └── MathUtils.cs
│   │   ├── Native/
│   │   │   ├── DWMAPI.cs
│   │   │   ├── Enums.cs
│   │   │   ├── ExternDll.cs
│   │   │   ├── HT.cs
│   │   │   ├── NativeMethodsCLR.cs
│   │   │   ├── SafeNativeMethodsCLR.cs
│   │   │   ├── UnsafeNativeMethodsCLR.cs
│   │   │   └── User32.cs
│   │   ├── NativeMethods.txt
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── AssemblyInfoCommon.cs
│   │   │   └── DesignTimeResources.xaml
│   │   ├── ResourceDictionaryEx.cs
│   │   ├── Resources/
│   │   │   ├── Fonts/
│   │   │   │   ├── Fonts.xaml
│   │   │   │   └── License - Fluent System Icons.txt
│   │   │   └── Strings/
│   │   │       ├── Strings.Designer.cs
│   │   │       ├── Strings.cs-CZ.resx
│   │   │       ├── Strings.de-DE.resx
│   │   │       ├── Strings.es-ES.resx
│   │   │       ├── Strings.es-MX.resx
│   │   │       ├── Strings.fa-IR.resx
│   │   │       ├── Strings.fr-CA.resx
│   │   │       ├── Strings.fr-FR.resx
│   │   │       ├── Strings.it-IT.resx
│   │   │       ├── Strings.ja-JP.resx
│   │   │       ├── Strings.ko-KR.resx
│   │   │       ├── Strings.pl-PL.resx
│   │   │       ├── Strings.pt-BR.resx
│   │   │       ├── Strings.pt-PT.resx
│   │   │       ├── Strings.resx
│   │   │       ├── Strings.ru-RU.resx
│   │   │       ├── Strings.tr-TR.resx
│   │   │       ├── Strings.zh-CN.resx
│   │   │       └── Strings.zh-TW.resx
│   │   ├── ThemeDictionary.cs
│   │   ├── ThemeKeys.Light.cs
│   │   ├── ThemeKeys.ThemeResources.cs
│   │   ├── ThemeKeys.cs
│   │   ├── ThemeManager.cs
│   │   ├── ThemeResources.cs
│   │   ├── Themes/
│   │   │   ├── Controls/
│   │   │   │   ├── AutoSuggestBox.xaml
│   │   │   │   ├── Button.xaml
│   │   │   │   ├── Calendar.xaml
│   │   │   │   ├── CheckBox.xaml
│   │   │   │   ├── ComboBox.xaml
│   │   │   │   ├── CommandBar.xaml
│   │   │   │   ├── ContextMenu.xaml
│   │   │   │   ├── DataGrid.xaml
│   │   │   │   ├── DatePicker.xaml
│   │   │   │   ├── Expander.xaml
│   │   │   │   ├── GridSplitter.xaml
│   │   │   │   ├── GroupBox.xaml
│   │   │   │   ├── GroupItem.xaml
│   │   │   │   ├── Hyperlink.xaml
│   │   │   │   ├── InfoBar.xaml
│   │   │   │   ├── Label.xaml
│   │   │   │   ├── ListBox.xaml
│   │   │   │   ├── ListView.xaml
│   │   │   │   ├── Menu.xaml
│   │   │   │   ├── MenuItem.xaml
│   │   │   │   ├── NavigationBackButton.xaml
│   │   │   │   ├── NavigationView.xaml
│   │   │   │   ├── PasswordBox.xaml
│   │   │   │   ├── PipsPager.xaml
│   │   │   │   ├── Pivot.xaml
│   │   │   │   ├── ProgressBar.xaml
│   │   │   │   ├── RadioButton.xaml
│   │   │   │   ├── RatingControl.xaml
│   │   │   │   ├── RepeatButton.xaml
│   │   │   │   ├── ResizeGrip.xaml
│   │   │   │   ├── RichTextBox.xaml
│   │   │   │   ├── ScrollBar.xaml
│   │   │   │   ├── ScrollViewer.xaml
│   │   │   │   ├── Slider.xaml
│   │   │   │   ├── StatusBar.xaml
│   │   │   │   ├── TabControl.xaml
│   │   │   │   ├── TeachingTip.xaml
│   │   │   │   ├── TextBox.xaml
│   │   │   │   ├── TextStyles.xaml
│   │   │   │   ├── TimePicker.xaml
│   │   │   │   ├── ToggleButton.xaml
│   │   │   │   ├── ToolBar.xaml
│   │   │   │   ├── ToolTip.xaml
│   │   │   │   ├── TreeView.xaml
│   │   │   │   └── Window.xaml
│   │   │   ├── ControlsResources.xaml
│   │   │   ├── DensityStyles/
│   │   │   │   └── Compact.xaml
│   │   │   ├── DesignTime/
│   │   │   │   ├── Design.cs
│   │   │   │   ├── DesignTimeResources.xaml
│   │   │   │   ├── IntellisenseResources.cs
│   │   │   │   ├── IntellisenseResourcesBase.cs
│   │   │   │   ├── ResourceKeys.xaml
│   │   │   │   └── SystemColors.xaml
│   │   │   ├── FontIconFallback.xaml
│   │   │   ├── Generic.xaml
│   │   │   ├── ListViewHeaderItem.xaml
│   │   │   ├── Schemes/
│   │   │   │   ├── Dark.xaml
│   │   │   │   ├── HighContrast.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── TextContextMenu.xaml
│   │   │   └── ThemeResources.xaml
│   │   ├── UISettingsResources.cs
│   │   └── iNKORE.UI.WPF.Modern.csproj
│   ├── iNKORE.UI.WPF.Modern.Controls/
│   │   ├── .editorconfig
│   │   ├── Common/
│   │   │   ├── CollectionHelper.cs
│   │   │   ├── ControlStrings.cs
│   │   │   ├── CppWinRTHelpers.cs
│   │   │   ├── DependencyPropertyChangedCallback.cs
│   │   │   ├── EmptyEnumerator.cs
│   │   │   ├── EventRevokers.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── IControlProtected.cs
│   │   │   ├── LightDismissOverlayMode.cs
│   │   │   ├── ListExtensions.cs
│   │   │   ├── PopupHelper.cs
│   │   │   ├── PopupRepositionHelper.cs
│   │   │   ├── RoutedEventHandlerRevoker.cs
│   │   │   ├── SelectorHelper.cs
│   │   │   ├── SharedHelpers.cs
│   │   │   └── Utils.cs
│   │   ├── Controls/
│   │   │   ├── Community/
│   │   │   │   └── SettingsControls/
│   │   │   │       ├── SettingsCard/
│   │   │   │       │   ├── SettingsCard.Properties.cs
│   │   │   │       │   ├── SettingsCard.cs
│   │   │   │       │   ├── SettingsCard.xaml
│   │   │   │       │   └── SettingsCardAutomationPeer.cs
│   │   │   │       └── SettingsExpander/
│   │   │   │           ├── SettingsExpander.Events.cs
│   │   │   │           ├── SettingsExpander.ItemsControl.cs
│   │   │   │           ├── SettingsExpander.Properties.cs
│   │   │   │           ├── SettingsExpander.cs
│   │   │   │           ├── SettingsExpander.xaml
│   │   │   │           ├── SettingsExpanderAutomationPeer.cs
│   │   │   │           └── SettingsExpanderItemStyleSelector.cs
│   │   │   ├── Extended/
│   │   │   │   └── MessageBox/
│   │   │   │       ├── LocalizedDialogCommands.cs
│   │   │   │       ├── MessageBox.Helper.cs
│   │   │   │       ├── MessageBox.cs
│   │   │   │       ├── MessageBox.xaml
│   │   │   │       ├── MessageBoxButtonClickDeferral.cs
│   │   │   │       ├── MessageBoxButtonClickEventArgs.cs
│   │   │   │       ├── MessageBoxClosedEventArgs.cs
│   │   │   │       ├── MessageBoxClosingDeferral.cs
│   │   │   │       ├── MessageBoxClosingEventArgs.cs
│   │   │   │       ├── MessageBoxImageExtensions.cs
│   │   │   │       ├── MessageBoxOpenedEventArgs.cs
│   │   │   │       └── MessageBoxTemplateSettings.cs
│   │   │   └── Windows/
│   │   │       ├── AutoSuggestBox/
│   │   │       │   ├── AutoSuggestBox.cs
│   │   │       │   ├── AutoSuggestBox.properties.cs
│   │   │       │   ├── AutoSuggestBox.xaml
│   │   │       │   ├── AutoSuggestBoxHelper.cs
│   │   │       │   ├── AutoSuggestBoxListView.cs
│   │   │       │   ├── AutoSuggestBoxListViewItem.cs
│   │   │       │   ├── AutoSuggestBoxQuerySubmittedEventArgs.cs
│   │   │       │   ├── AutoSuggestBoxSuggestionChosenEventArgs.cs
│   │   │       │   └── AutoSuggestBoxTextChangedEventArgs.cs
│   │   │       ├── CommandBar/
│   │   │       │   ├── AppBarButton.cs
│   │   │       │   ├── AppBarButton.xaml
│   │   │       │   ├── AppBarElementApplicationViewState.cs
│   │   │       │   ├── AppBarElementContainer.cs
│   │   │       │   ├── AppBarElementContainer.xaml
│   │   │       │   ├── AppBarElementProperties.cs
│   │   │       │   ├── AppBarElementVisualStateManager.cs
│   │   │       │   ├── AppBarRepeatButton.cs
│   │   │       │   ├── AppBarRepeatButton.xaml
│   │   │       │   ├── AppBarSeparator.cs
│   │   │       │   ├── AppBarSeparator.xaml
│   │   │       │   ├── AppBarToggleButton.cs
│   │   │       │   ├── AppBarToggleButton.xaml
│   │   │       │   ├── CommandBar.cs
│   │   │       │   ├── CommandBar.xaml
│   │   │       │   ├── CommandBarDefaultLabelPosition.cs
│   │   │       │   ├── CommandBarLabelPosition.cs
│   │   │       │   ├── CommandBarOverflowButtonVisibility.cs
│   │   │       │   ├── CommandBarOverflowPanel.cs
│   │   │       │   ├── CommandBarOverflowPresenter.cs
│   │   │       │   ├── CommandBarPanel.cs
│   │   │       │   ├── CommandBarToolBar.cs
│   │   │       │   └── ICommandBarElement.cs
│   │   │       ├── CommandBarFlyout/
│   │   │       │   ├── CommandBarFlyout.cs
│   │   │       │   ├── CommandBarFlyout.xaml
│   │   │       │   ├── CommandBarFlyoutCommandBar.cs
│   │   │       │   ├── CommandBarFlyoutCommandBarTemplateSettings.cs
│   │   │       │   ├── CommandBarFlyoutCommandBarTemplateSettingsProxy.cs
│   │   │       │   └── CommandBarFlyoutToolBar.cs
│   │   │       ├── ContentDialog/
│   │   │       │   ├── ContentDialog.cs
│   │   │       │   ├── ContentDialog.xaml
│   │   │       │   ├── ContentDialogButton.cs
│   │   │       │   ├── ContentDialogButtonClickDeferral.cs
│   │   │       │   ├── ContentDialogButtonClickEventArgs.cs
│   │   │       │   ├── ContentDialogClosedEventArgs.cs
│   │   │       │   ├── ContentDialogClosingDeferral.cs
│   │   │       │   ├── ContentDialogClosingEventArgs.cs
│   │   │       │   ├── ContentDialogOpenedEventArgs.cs
│   │   │       │   ├── ContentDialogPlacement.cs
│   │   │       │   └── ContentDialogResult.cs
│   │   │       ├── DropDownButton/
│   │   │       │   ├── DropDownButton.cs
│   │   │       │   ├── DropDownButton.xaml
│   │   │       │   └── DropDownButtonAutomationPeer.cs
│   │   │       ├── FlipView/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── FlipView.cs
│   │   │       │   ├── FlipView.xaml
│   │   │       │   └── FlipViewItem.cs
│   │   │       ├── Flyout/
│   │   │       │   ├── ContextFlyoutService.cs
│   │   │       │   ├── EventRevokers.cs
│   │   │       │   ├── Flyout.cs
│   │   │       │   ├── FlyoutBase.cs
│   │   │       │   ├── FlyoutBaseClosingEventArgs.cs
│   │   │       │   ├── FlyoutPlacementMode.cs
│   │   │       │   ├── FlyoutPresenter.cs
│   │   │       │   ├── FlyoutPresenter.xaml
│   │   │       │   ├── FlyoutService.cs
│   │   │       │   └── FlyoutShowMode.cs
│   │   │       ├── HyperlinkButton/
│   │   │       │   ├── HyperlinkButton.cs
│   │   │       │   ├── HyperlinkButton.xaml
│   │   │       │   └── HyperlinkButtonAutomationPeer.cs
│   │   │       ├── InfoBadge/
│   │   │       │   ├── InfoBadge.cs
│   │   │       │   ├── InfoBadge.xaml
│   │   │       │   └── InfoBadgeTemplateSettings.cs
│   │   │       ├── InfoBar/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── InfoBar.cs
│   │   │       │   ├── InfoBar.properties.cs
│   │   │       │   ├── InfoBar.xaml
│   │   │       │   ├── InfoBarAutomationPeer.cs
│   │   │       │   ├── InfoBarClosedEventArgs.cs
│   │   │       │   ├── InfoBarClosingEventArgs.cs
│   │   │       │   ├── InfoBarPanel.cs
│   │   │       │   ├── InfoBarTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.as-IN.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-IN.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.cy-GB.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.ga-IE.resx
│   │   │       │       ├── Resources.gd-gb.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.gu-IN.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.hy-AM.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.kok-IN.resx
│   │   │       │       ├── Resources.lb-LU.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mi-NZ.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.mr-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.mt-MT.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.ne-NP.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.or-IN.resx
│   │   │       │       ├── Resources.pa-IN.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.quz-PE.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Cyrl-BA.resx
│   │   │       │       ├── Resources.sr-Cyrl-RS.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.tt-RU.resx
│   │   │       │       ├── Resources.ug-CN.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.ur-PK.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── InputBox/
│   │   │       │   ├── InputBox.cs
│   │   │       │   ├── InputBoxContent.xaml
│   │   │       │   └── InputBoxContent.xaml.cs
│   │   │       ├── LayoutPanel/
│   │   │       │   ├── LayoutPanel.cs
│   │   │       │   └── LayoutPanelLayoutContext.cs
│   │   │       ├── ListView/
│   │   │       │   ├── GridView.cs
│   │   │       │   ├── GridView.xaml
│   │   │       │   ├── GridViewHeaderItem.cs
│   │   │       │   ├── GridViewItem.cs
│   │   │       │   ├── ItemClickEventHandler.cs
│   │   │       │   ├── ListView.cs
│   │   │       │   ├── ListView.xaml
│   │   │       │   ├── ListViewBase.cs
│   │   │       │   ├── ListViewBaseItem.cs
│   │   │       │   └── ListViewItem.cs
│   │   │       ├── MediaPlayerElement/
│   │   │       │   ├── MediaElementEx.cs
│   │   │       │   ├── MediaPlayerElement.cs
│   │   │       │   ├── MediaPlayerElement.xaml
│   │   │       │   ├── MediaTransportControls.cs
│   │   │       │   ├── MediaTransportControls.properties.cs
│   │   │       │   ├── MediaTransportControls.xaml
│   │   │       │   └── MediaTransportControlsTemplateSettings.cs
│   │   │       ├── MenuFlyout/
│   │   │       │   ├── MenuFlyout.cs
│   │   │       │   ├── MenuFlyout.xaml
│   │   │       │   └── MenuFlyoutPresenter.cs
│   │   │       ├── NavigationView/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── NavigationView.cs
│   │   │       │   ├── NavigationView.properties.cs
│   │   │       │   ├── NavigationView.xaml
│   │   │       │   ├── NavigationViewAutomationPeer.cs
│   │   │       │   ├── NavigationViewBackRequestedEventArgs.cs
│   │   │       │   ├── NavigationViewDisplayModeChangedEventArgs.cs
│   │   │       │   ├── NavigationViewHelper.cs
│   │   │       │   ├── NavigationViewItem.cs
│   │   │       │   ├── NavigationViewItem.properties.cs
│   │   │       │   ├── NavigationViewItemAutomationPeer.cs
│   │   │       │   ├── NavigationViewItemBase.cs
│   │   │       │   ├── NavigationViewItemCollapsedEventArgs.cs
│   │   │       │   ├── NavigationViewItemExpandingEventArgs.cs
│   │   │       │   ├── NavigationViewItemHeader.cs
│   │   │       │   ├── NavigationViewItemInvokedEventArgs.cs
│   │   │       │   ├── NavigationViewItemPresenter.cs
│   │   │       │   ├── NavigationViewItemSeparator.cs
│   │   │       │   ├── NavigationViewItemsFactory.cs
│   │   │       │   ├── NavigationViewPaneClosingEventArgs.cs
│   │   │       │   ├── NavigationViewSelectionChangedEventArgs.cs
│   │   │       │   ├── NavigationViewTemplateSettings.cs
│   │   │       │   ├── SplitDataSourceBase.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.be-BY.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-BD.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.ha-Latn-NG.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.sw-KE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   └── TopNavigationViewDataProvider.cs
│   │   │       ├── NumberBox/
│   │   │       │   ├── DefaultNumberBoxNumberFormatter.cs
│   │   │       │   ├── DefaultNumberRounder.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── INumberBoxNumberFormatter.cs
│   │   │       │   ├── NumberBox.cs
│   │   │       │   ├── NumberBox.properties.cs
│   │   │       │   ├── NumberBox.xaml
│   │   │       │   ├── NumberBoxAutomationPeer.cs
│   │   │       │   ├── NumberBoxParser.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ParallaxView/
│   │   │       │   ├── ParallaxView.cs
│   │   │       │   └── ParallaxView.xaml
│   │   │       ├── PersonPicture/
│   │   │       │   ├── InitialsGenerator.cs
│   │   │       │   ├── PersonPicture.cs
│   │   │       │   ├── PersonPicture.properties.cs
│   │   │       │   ├── PersonPicture.xaml
│   │   │       │   ├── PersonPictureAutomationPeer.cs
│   │   │       │   ├── PersonPictureTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── PipsPager/
│   │   │       │   ├── Enum.cs
│   │   │       │   ├── PipsPager.cs
│   │   │       │   ├── PipsPager.properties.cs
│   │   │       │   ├── PipsPager.xaml
│   │   │       │   ├── PipsPagerAutomationPeer.cs
│   │   │       │   ├── PipsPagerSelectedIndexChangedEventArgs.cs
│   │   │       │   ├── PipsPagerTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.as-IN.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-IN.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.cy-GB.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.ga-IE.resx
│   │   │       │       ├── Resources.gd-gb.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.gu-IN.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.hy-AM.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.kok-IN.resx
│   │   │       │       ├── Resources.lb-LU.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mi-NZ.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.mr-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.mt-MT.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.ne-NP.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.or-IN.resx
│   │   │       │       ├── Resources.pa-IN.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.quz-PE.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Cyrl-BA.resx
│   │   │       │       ├── Resources.sr-Cyrl-RS.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.tt-RU.resx
│   │   │       │       ├── Resources.ug-CN.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.ur-PK.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ProgressBar/
│   │   │       │   ├── ProgressBar.cs
│   │   │       │   ├── ProgressBar.xaml
│   │   │       │   ├── ProgressBarAutomationPeer.cs
│   │   │       │   ├── ProgressBarTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ProgressRing/
│   │   │       │   ├── ProgressRing.cs
│   │   │       │   ├── ProgressRing.xaml
│   │   │       │   ├── ProgressRingAutomationPeer.cs
│   │   │       │   ├── ProgressRingPresenter.cs
│   │   │       │   ├── ProgressRingPresenterTemplateSettings.cs
│   │   │       │   ├── ProgressRingTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── RadioButtons/
│   │   │       │   ├── ColumnMajorUniformToLargestGridLayout.cs
│   │   │       │   ├── RadioButtons.cs
│   │   │       │   ├── RadioButtons.xaml
│   │   │       │   ├── RadioButtonsElementFactory.cs
│   │   │       │   └── RadioButtonsTestHooks.cs
│   │   │       ├── RadioMenuItem/
│   │   │       │   ├── RadioMenuItem.cs
│   │   │       │   └── RadioMenuItem.xaml
│   │   │       ├── RatingControl/
│   │   │       │   ├── RatingControl.cs
│   │   │       │   ├── RatingControl.properties.cs
│   │   │       │   ├── RatingControl.xaml
│   │   │       │   ├── RatingControlAutomationPeer.cs
│   │   │       │   ├── RatingItemImageInfo.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── RelativePanel/
│   │   │       │   ├── RelativePanel.AttachedProperties.cs
│   │   │       │   └── RelativePanel.cs
│   │   │       ├── Repeater/
│   │   │       │   ├── Automation/
│   │   │       │   │   └── RepeaterAutomationPeer.cs
│   │   │       │   ├── Common/
│   │   │       │   │   ├── IndexPath.cs
│   │   │       │   │   ├── IndexRange.cs
│   │   │       │   │   ├── RepeaterTestHooks.cs
│   │   │       │   │   └── RepeaterTestHooksFactory.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── GlobalSuppressions.cs
│   │   │       │   ├── IElementFactory.cs
│   │   │       │   ├── IElementFactoryShim.cs
│   │   │       │   ├── IKeyIndexMapping.cs
│   │   │       │   ├── IScrollAnchorProvider.cs
│   │   │       │   ├── ItemsRepeater/
│   │   │       │   │   ├── Animations/
│   │   │       │   │   │   ├── AnimationManager.cs
│   │   │       │   │   │   └── ElementAnimator.cs
│   │   │       │   │   ├── EventRevokers.cs
│   │   │       │   │   ├── ItemTemplate/
│   │   │       │   │   │   ├── ElementFactory.cs
│   │   │       │   │   │   ├── ElementFactoryGetArgs.cs
│   │   │       │   │   │   ├── ElementFactoryRecycleArgs.cs
│   │   │       │   │   │   ├── ItemTemplateWrapper.cs
│   │   │       │   │   │   ├── RecyclePool.cs
│   │   │       │   │   │   ├── RecyclingElementFactory.cs
│   │   │       │   │   │   └── SelectTemplateEventArgs.cs
│   │   │       │   │   ├── ItemsRepeater.common.cs
│   │   │       │   │   ├── ItemsRepeater.cs
│   │   │       │   │   ├── ItemsRepeater.wpf.cs
│   │   │       │   │   ├── ItemsRepeaterElementClearingEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterElementIndexChangedEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterElementPreparedEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterScrollHost.cs
│   │   │       │   │   ├── ItemsSource/
│   │   │       │   │   │   ├── InspectingDataSource.cs
│   │   │       │   │   │   └── ItemsSourceView.cs
│   │   │       │   │   ├── RepeaterLayoutContext.cs
│   │   │       │   │   ├── RepeaterPrivate.cs
│   │   │       │   │   ├── UniqueIdElementPool.cs
│   │   │       │   │   ├── ViewManager.cs
│   │   │       │   │   ├── ViewportManager.cs
│   │   │       │   │   └── ViewportManagerDownLevel.cs
│   │   │       │   ├── Layouts/
│   │   │       │   │   ├── FlowLayout/
│   │   │       │   │   │   ├── ElementManager.cs
│   │   │       │   │   │   ├── FlowLayout.cs
│   │   │       │   │   │   ├── FlowLayoutAlgorithm.cs
│   │   │       │   │   │   ├── FlowLayoutState.cs
│   │   │       │   │   │   ├── IFlowLayoutAlgorithmDelegates.cs
│   │   │       │   │   │   └── OrientationBasedMeasures.cs
│   │   │       │   │   ├── Layout.cs
│   │   │       │   │   ├── LayoutContext.cs
│   │   │       │   │   ├── LayoutContextAdapter.cs
│   │   │       │   │   ├── NonVirtualizingLayout.cs
│   │   │       │   │   ├── NonVirtualizingLayoutContext.cs
│   │   │       │   │   ├── StackLayout/
│   │   │       │   │   │   ├── StackLayout.cs
│   │   │       │   │   │   └── StackLayoutState.cs
│   │   │       │   │   ├── UniformGridLayout/
│   │   │       │   │   │   ├── UniformGridLayout.cs
│   │   │       │   │   │   └── UniformGridLayoutState.cs
│   │   │       │   │   ├── VirtualLayoutContextAdapter.cs
│   │   │       │   │   ├── VirtualizationInfo.cs
│   │   │       │   │   ├── VirtualizingLayout.cs
│   │   │       │   │   └── VirtualizingLayoutContext.cs
│   │   │       │   ├── RepeaterUIElementCollection.cs
│   │   │       │   ├── ScrollViewerExtensions.cs
│   │   │       │   └── SelectionModel/
│   │   │       │       ├── SelectedItems.cs
│   │   │       │       ├── SelectionModel.cs
│   │   │       │       ├── SelectionModelChildrenRequestedEventArgs.cs
│   │   │       │       ├── SelectionModelSelectionChangedEventArgs.cs
│   │   │       │       ├── SelectionNode.cs
│   │   │       │       └── SelectionTreeHelper.cs
│   │   │       ├── SplitButton/
│   │   │       │   ├── SplitButton.cs
│   │   │       │   ├── SplitButton.xaml
│   │   │       │   ├── SplitButtonAutomationPeer.cs
│   │   │       │   ├── SplitButtonClickEventArgs.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.be-BY.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-BD.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.ha-Latn-NG.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.sw-KE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   ├── ToggleSplitButton.cs
│   │   │       │   └── ToggleSplitButtonAutomationPeer.cs
│   │   │       ├── SplitView/
│   │   │       │   ├── EventRevokers.cs
│   │   │       │   ├── SplitView.cs
│   │   │       │   ├── SplitView.properties.cs
│   │   │       │   ├── SplitView.xaml
│   │   │       │   ├── SplitViewDisplayMode.cs
│   │   │       │   ├── SplitViewPaneClosingEventArgs.cs
│   │   │       │   ├── SplitViewPanePlacement.cs
│   │   │       │   └── SplitViewTemplateSettings.cs
│   │   │       ├── TeachingTip/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.as-IN.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-IN.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.cy-GB.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.ga-IE.resx
│   │   │       │   │   ├── Resources.gd-gb.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.gu-IN.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.hy-AM.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.kok-IN.resx
│   │   │       │   │   ├── Resources.lb-LU.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mi-NZ.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.mr-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.mt-MT.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.ne-NP.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.or-IN.resx
│   │   │       │   │   ├── Resources.pa-IN.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.quz-PE.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Cyrl-BA.resx
│   │   │       │   │   ├── Resources.sr-Cyrl-RS.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.tt-RU.resx
│   │   │       │   │   ├── Resources.ug-CN.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.ur-PK.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   ├── TeachingTip.cs
│   │   │       │   ├── TeachingTip.properties.cs
│   │   │       │   ├── TeachingTip.xaml
│   │   │       │   ├── TeachingTipAutomationPeer.cs
│   │   │       │   ├── TeachingTipClosedEventArgs.cs
│   │   │       │   ├── TeachingTipClosingEventArgs.cs
│   │   │       │   ├── TeachingTipTemplateSettings.cs
│   │   │       │   └── TeachingTipTestHooks.cs
│   │   │       ├── TimePicker/
│   │   │       │   ├── AmPmComparer.cs
│   │   │       │   ├── DateTimeComponentSelector.cs
│   │   │       │   ├── DateTimeComponentSelectorItem.cs
│   │   │       │   ├── DateTimeComponentSelectorItemsConverter.cs
│   │   │       │   ├── DateTimeComponentSelectorPanel.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── LoopingSelectorDataSource.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.cs.resx
│   │   │       │   │   ├── Resources.de.resx
│   │   │       │   │   ├── Resources.es.resx
│   │   │       │   │   ├── Resources.fa.resx
│   │   │       │   │   ├── Resources.fr.resx
│   │   │       │   │   ├── Resources.it.resx
│   │   │       │   │   ├── Resources.ja.resx
│   │   │       │   │   ├── Resources.ko.resx
│   │   │       │   │   ├── Resources.pl.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ru.resx
│   │   │       │   │   ├── Resources.tr.resx
│   │   │       │   │   ├── Resources.zh-Hans.resx
│   │   │       │   │   └── Resources.zh-Hant.resx
│   │   │       │   ├── TimePicker.cs
│   │   │       │   ├── TimePicker.xaml
│   │   │       │   └── TimePickerBase.cs
│   │   │       ├── ToggleSwitch/
│   │   │       │   ├── ToggleSwitch.cs
│   │   │       │   ├── ToggleSwitch.xaml
│   │   │       │   └── ToggleSwitchAutomationPeer.cs
│   │   │       ├── TransitioningContentControl/
│   │   │       │   ├── TransitioningContentControl.cs
│   │   │       │   └── TransitioningContentControl.xaml
│   │   │       └── TwoPaneView/
│   │   │           ├── DisplayRegionHelper.cs
│   │   │           ├── DisplayRegionHelperInfo.cs
│   │   │           ├── Enums.cs
│   │   │           ├── TwoPaneView.cs
│   │   │           └── TwoPaneView.xaml
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── DesignTimeResources.xaml
│   │   ├── Themes/
│   │   │   └── Generic.xaml
│   │   └── iNKORE.UI.WPF.Modern.Controls.csproj
│   ├── iNKORE.UI.WPF.Modern.Gallery/
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── Assets/
│   │   │   ├── Contacts.txt
│   │   │   ├── SampleMedia/
│   │   │   │   ├── fishes.wmv
│   │   │   │   └── ladybug.wmv
│   │   │   └── mtns.csv
│   │   ├── Common/
│   │   │   ├── ActivityFeedLayout.cs
│   │   │   ├── BoolNegationConverter.cs
│   │   │   ├── BooleanToValueConverter.cs
│   │   │   ├── BrushToColorConverter.cs
│   │   │   ├── Category.cs
│   │   │   ├── CornerRadiusToDoubleConverter.cs
│   │   │   ├── DynamicResourceHelper.cs
│   │   │   ├── EqualsConverter.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── FontIconExtension.cs
│   │   │   ├── ImageLoader.cs
│   │   │   ├── InverseAppThemeConverter.cs
│   │   │   ├── InvertThemeConverter.cs
│   │   │   ├── ItemCountConverter.cs
│   │   │   ├── LanguageList.cs
│   │   │   ├── MenuItemTemplateSelector.cs
│   │   │   ├── NullToVisibilityConverter.cs
│   │   │   ├── NullableBooleanToBooleanConverter.cs
│   │   │   ├── RelativeToAbsoluteConverter.cs
│   │   │   ├── SolidColorBrushToColorStringConverter.cs
│   │   │   ├── StaticResourceHelper.cs
│   │   │   ├── WindowExtensions.cs
│   │   │   ├── WindowHelper.cs
│   │   │   └── WindowPlacement.cs
│   │   ├── Controls/
│   │   │   ├── ControlExample.cs
│   │   │   ├── ControlExample.xaml
│   │   │   ├── HeaderTile.xaml
│   │   │   ├── HeaderTile.xaml.cs
│   │   │   ├── HomePageHeaderImage.xaml
│   │   │   ├── HomePageHeaderImage.xaml.cs
│   │   │   ├── PageHeader.xaml
│   │   │   ├── PageHeader.xaml.cs
│   │   │   ├── SampleCodePresenter.xaml
│   │   │   ├── SampleCodePresenter.xaml.cs
│   │   │   ├── TileGallery.xaml
│   │   │   ├── TileGallery.xaml.cs
│   │   │   └── UserControls/
│   │   │       ├── DocumentationPromotion.xaml
│   │   │       ├── DocumentationPromotion.xaml.cs
│   │   │       ├── TypographyControl.xaml
│   │   │       └── TypographyControl.xaml.cs
│   │   ├── Data/
│   │   │   ├── DataGridDataItem.cs
│   │   │   ├── DataGridDataSource.cs
│   │   │   └── IconsDataSource.cs
│   │   ├── DataModel/
│   │   │   ├── ControlInfoData.schema.json
│   │   │   ├── ControlInfoDataItem.cs
│   │   │   ├── Data/
│   │   │   │   ├── Controls.Community.json
│   │   │   │   ├── Controls.Extended.json
│   │   │   │   ├── Controls.Foundation.json
│   │   │   │   └── Controls.Windows.json
│   │   │   └── IconData.cs
│   │   ├── Helpers/
│   │   │   ├── NavigationHelper.cs
│   │   │   ├── StringHelper.cs
│   │   │   └── ThemeHelper.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Navigation/
│   │   │   ├── NavigationRootPage.xaml
│   │   │   └── NavigationRootPage.xaml.cs
│   │   ├── PRIVACY.md
│   │   ├── Pages/
│   │   │   ├── AllControlsPage.xaml
│   │   │   ├── AllControlsPage.xaml.cs
│   │   │   ├── Controls/
│   │   │   │   ├── Community/
│   │   │   │   │   ├── SettingsCardPage.xaml
│   │   │   │   │   ├── SettingsCardPage.xaml.cs
│   │   │   │   │   ├── SettingsExpanderPage.xaml
│   │   │   │   │   └── SettingsExpanderPage.xaml.cs
│   │   │   │   ├── Extended/
│   │   │   │   │   ├── MessageBoxPage.xaml
│   │   │   │   │   └── MessageBoxPage.xaml.cs
│   │   │   │   ├── Foundation/
│   │   │   │   │   ├── Accessbility/
│   │   │   │   │   │   └── .gitkeep
│   │   │   │   │   ├── Design/
│   │   │   │   │   │   ├── IconographyPage.xaml
│   │   │   │   │   │   ├── IconographyPage.xaml.cs
│   │   │   │   │   │   ├── TypographyPage.xaml
│   │   │   │   │   │   └── TypographyPage.xaml.cs
│   │   │   │   │   └── Fundamentals/
│   │   │   │   │       └── .gitkeep
│   │   │   │   └── Windows/
│   │   │   │       ├── AcrylicPage.xaml
│   │   │   │       ├── AcrylicPage.xaml.cs
│   │   │   │       ├── AppBarButtonPage.xaml
│   │   │   │       ├── AppBarButtonPage.xaml.cs
│   │   │   │       ├── AppBarSeparatorPage.xaml
│   │   │   │       ├── AppBarSeparatorPage.xaml.cs
│   │   │   │       ├── AppBarToggleButtonPage.xaml
│   │   │   │       ├── AppBarToggleButtonPage.xaml.cs
│   │   │   │       ├── AutoSuggestBoxPage.xaml
│   │   │   │       ├── AutoSuggestBoxPage.xaml.cs
│   │   │   │       ├── AutomationPropertiesPage.xaml
│   │   │   │       ├── AutomationPropertiesPage.xaml.cs
│   │   │   │       ├── BorderPage.xaml
│   │   │   │       ├── BorderPage.xaml.cs
│   │   │   │       ├── ButtonPage.xaml
│   │   │   │       ├── ButtonPage.xaml.cs
│   │   │   │       ├── CalendarDatePickerPage.xaml
│   │   │   │       ├── CalendarDatePickerPage.xaml.cs
│   │   │   │       ├── CalendarViewPage.xaml
│   │   │   │       ├── CalendarViewPage.xaml.cs
│   │   │   │       ├── CanvasPage.xaml
│   │   │   │       ├── CanvasPage.xaml.cs
│   │   │   │       ├── CheckBoxPage.xaml
│   │   │   │       ├── CheckBoxPage.xaml.cs
│   │   │   │       ├── ColorPaletteResourcesPage.xaml
│   │   │   │       ├── ColorPaletteResourcesPage.xaml.cs
│   │   │   │       ├── ComboBoxPage.xaml
│   │   │   │       ├── ComboBoxPage.xaml.cs
│   │   │   │       ├── CommandBarFlyoutPage.xaml
│   │   │   │       ├── CommandBarFlyoutPage.xaml.cs
│   │   │   │       ├── CommandBarPage.xaml
│   │   │   │       ├── CommandBarPage.xaml.cs
│   │   │   │       ├── CompactSizingPage.xaml
│   │   │   │       ├── CompactSizingPage.xaml.cs
│   │   │   │       ├── ContentDialogContent.xaml
│   │   │   │       ├── ContentDialogContent.xaml.cs
│   │   │   │       ├── ContentDialogExample.xaml
│   │   │   │       ├── ContentDialogExample.xaml.cs
│   │   │   │       ├── ContentDialogPage.xaml
│   │   │   │       ├── ContentDialogPage.xaml.cs
│   │   │   │       ├── ContentDialogTestContent.xaml
│   │   │   │       ├── ContentDialogTestContent.xaml.cs
│   │   │   │       ├── ContextMenuPage.xaml
│   │   │   │       ├── ContextMenuPage.xaml.cs
│   │   │   │       ├── ControlPalettePage.xaml
│   │   │   │       ├── ControlPalettePage.xaml.cs
│   │   │   │       ├── ControlPaletteTestContent.xaml
│   │   │   │       ├── ControlPaletteTestContent.xaml.cs
│   │   │   │       ├── CustomDataObject.cs
│   │   │   │       ├── DataGridPage.xaml
│   │   │   │       ├── DataGridPage.xaml.cs
│   │   │   │       ├── DatePickerPage.xaml
│   │   │   │       ├── DatePickerPage.xaml.cs
│   │   │   │       ├── DropDownButtonPage.xaml
│   │   │   │       ├── DropDownButtonPage.xaml.cs
│   │   │   │       ├── ExpanderPage.xaml
│   │   │   │       ├── ExpanderPage.xaml.cs
│   │   │   │       ├── FlipViewPage.xaml
│   │   │   │       ├── FlipViewPage.xaml.cs
│   │   │   │       ├── FlyoutPage.xaml
│   │   │   │       ├── FlyoutPage.xaml.cs
│   │   │   │       ├── GridPage.xaml
│   │   │   │       ├── GridPage.xaml.cs
│   │   │   │       ├── GridSplitterPage.xaml
│   │   │   │       ├── GridSplitterPage.xaml.cs
│   │   │   │       ├── GridViewPage.xaml
│   │   │   │       ├── GridViewPage.xaml.cs
│   │   │   │       ├── GroupBoxPage.xaml
│   │   │   │       ├── GroupBoxPage.xaml.cs
│   │   │   │       ├── HyperlinkButtonPage.xaml
│   │   │   │       ├── HyperlinkButtonPage.xaml.cs
│   │   │   │       ├── IconElementPage.xaml
│   │   │   │       ├── IconElementPage.xaml.cs
│   │   │   │       ├── ImagePage.xaml
│   │   │   │       ├── ImagePage.xaml.cs
│   │   │   │       ├── InfoBadgePage.xaml
│   │   │   │       ├── InfoBadgePage.xaml.cs
│   │   │   │       ├── InfoBarPage.xaml
│   │   │   │       ├── InfoBarPage.xaml.cs
│   │   │   │       ├── ItemsRepeaterPage.xaml
│   │   │   │       ├── ItemsRepeaterPage.xaml.cs
│   │   │   │       ├── ListBoxPage.xaml
│   │   │   │       ├── ListBoxPage.xaml.cs
│   │   │   │       ├── ListViewPage.xaml
│   │   │   │       ├── ListViewPage.xaml.cs
│   │   │   │       ├── MediaPlayerElementPage.xaml
│   │   │   │       ├── MediaPlayerElementPage.xaml.cs
│   │   │   │       ├── MenuBarPage.xaml
│   │   │   │       ├── MenuBarPage.xaml.cs
│   │   │   │       ├── MenuFlyoutPage.xaml
│   │   │   │       ├── MenuFlyoutPage.xaml.cs
│   │   │   │       ├── MenuPage.xaml
│   │   │   │       ├── MenuPage.xaml.cs
│   │   │   │       ├── NavigationViewPage.xaml
│   │   │   │       ├── NavigationViewPage.xaml.cs
│   │   │   │       ├── NumberBoxPage.xaml
│   │   │   │       ├── NumberBoxPage.xaml.cs
│   │   │   │       ├── PageTransitionPage.xaml
│   │   │   │       ├── PageTransitionPage.xaml.cs
│   │   │   │       ├── ParallaxViewPage.xaml
│   │   │   │       ├── ParallaxViewPage.xaml.cs
│   │   │   │       ├── PasswordBoxPage.xaml
│   │   │   │       ├── PasswordBoxPage.xaml.cs
│   │   │   │       ├── PersonPicturePage.xaml
│   │   │   │       ├── PersonPicturePage.xaml.cs
│   │   │   │       ├── PipsPagerPage.xaml
│   │   │   │       ├── PipsPagerPage.xaml.cs
│   │   │   │       ├── PivotPage.xaml
│   │   │   │       ├── PivotPage.xaml.cs
│   │   │   │       ├── PopupPlacementPage.xaml
│   │   │   │       ├── PopupPlacementPage.xaml.cs
│   │   │   │       ├── ProgressBarPage.xaml
│   │   │   │       ├── ProgressBarPage.xaml.cs
│   │   │   │       ├── ProgressRingPage.xaml
│   │   │   │       ├── ProgressRingPage.xaml.cs
│   │   │   │       ├── RadialGradientBrushPage.xaml
│   │   │   │       ├── RadialGradientBrushPage.xaml.cs
│   │   │   │       ├── RadioButtonPage.xaml
│   │   │   │       ├── RadioButtonPage.xaml.cs
│   │   │   │       ├── RadioButtonsPage.xaml
│   │   │   │       ├── RadioButtonsPage.xaml.cs
│   │   │   │       ├── RatingControlPage.xaml
│   │   │   │       ├── RatingControlPage.xaml.cs
│   │   │   │       ├── RelativePanelPage.xaml
│   │   │   │       ├── RelativePanelPage.xaml.cs
│   │   │   │       ├── RepeatButtonPage.xaml
│   │   │   │       ├── RepeatButtonPage.xaml.cs
│   │   │   │       ├── RichEditBoxPage.xaml
│   │   │   │       ├── RichEditBoxPage.xaml.cs
│   │   │   │       ├── ScrollViewerPage.xaml
│   │   │   │       ├── ScrollViewerPage.xaml.cs
│   │   │   │       ├── ShadowPage.xaml
│   │   │   │       ├── ShadowPage.xaml.cs
│   │   │   │       ├── SliderPage.xaml
│   │   │   │       ├── SliderPage.xaml.cs
│   │   │   │       ├── SplitButtonPage.xaml
│   │   │   │       ├── SplitButtonPage.xaml.cs
│   │   │   │       ├── SplitViewPage.xaml
│   │   │   │       ├── SplitViewPage.xaml.cs
│   │   │   │       ├── StackPanelPage.xaml
│   │   │   │       ├── StackPanelPage.xaml.cs
│   │   │   │       ├── StatusBarPage.xaml
│   │   │   │       ├── StatusBarPage.xaml.cs
│   │   │   │       ├── SystemBackdropsPage.xaml
│   │   │   │       ├── SystemBackdropsPage.xaml.cs
│   │   │   │       ├── TabViewPage.xaml
│   │   │   │       ├── TabViewPage.xaml.cs
│   │   │   │       ├── TeachingTipPage.xaml
│   │   │   │       ├── TeachingTipPage.xaml.cs
│   │   │   │       ├── TestContentDialog.xaml
│   │   │   │       ├── TestContentDialog.xaml.cs
│   │   │   │       ├── TextBlockPage.xaml
│   │   │   │       ├── TextBlockPage.xaml.cs
│   │   │   │       ├── TextBoxPage.xaml
│   │   │   │       ├── TextBoxPage.xaml.cs
│   │   │   │       ├── ThemeResourcesPage.xaml
│   │   │   │       ├── ThemeResourcesPage.xaml.cs
│   │   │   │       ├── ThemesPage.xaml
│   │   │   │       ├── ThemesPage.xaml.cs
│   │   │   │       ├── ThreadedUIPage.xaml
│   │   │   │       ├── ThreadedUIPage.xaml.cs
│   │   │   │       ├── TimePickerPage.xaml
│   │   │   │       ├── TimePickerPage.xaml.cs
│   │   │   │       ├── ToggleButtonPage.xaml
│   │   │   │       ├── ToggleButtonPage.xaml.cs
│   │   │   │       ├── ToggleSplitButtonPage.xaml
│   │   │   │       ├── ToggleSplitButtonPage.xaml.cs
│   │   │   │       ├── ToggleSwitchPage.xaml
│   │   │   │       ├── ToggleSwitchPage.xaml.cs
│   │   │   │       ├── ToolBarPage.xaml
│   │   │   │       ├── ToolBarPage.xaml.cs
│   │   │   │       ├── ToolTipPage.xaml
│   │   │   │       ├── ToolTipPage.xaml.cs
│   │   │   │       ├── TreeViewPage.xaml
│   │   │   │       ├── TreeViewPage.xaml.cs
│   │   │   │       ├── ViewBoxPage.xaml
│   │   │   │       ├── ViewBoxPage.xaml.cs
│   │   │   │       ├── WindowPage.xaml
│   │   │   │       └── WindowPage.xaml.cs
│   │   │   ├── ItemPage.xaml
│   │   │   ├── ItemPage.xaml.cs
│   │   │   ├── ItemsPageBase.cs
│   │   │   ├── NewControlsPage.xaml
│   │   │   ├── NewControlsPage.xaml.cs
│   │   │   ├── SearchResultsPage.xaml
│   │   │   ├── SearchResultsPage.xaml.cs
│   │   │   ├── SectionPage.xaml
│   │   │   ├── SectionPage.xaml.cs
│   │   │   ├── SettingsPage.xaml
│   │   │   └── SettingsPage.xaml.cs
│   │   ├── Presets/
│   │   │   ├── ColorPresetResources.cs
│   │   │   ├── Default/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Forest/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Lavender/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Nighttime/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── PreFluent.xaml
│   │   │   ├── PresetManager.cs
│   │   │   └── ShapePresetResources.cs
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── DesignTimeResources.xaml
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Samples/
│   │   │   ├── SampleCompactSizingPage.xaml
│   │   │   ├── SampleCompactSizingPage.xaml.cs
│   │   │   ├── SampleContentDialogWindow.xaml
│   │   │   ├── SampleContentDialogWindow.xaml.cs
│   │   │   ├── SampleStandardSizingPage.xaml
│   │   │   ├── SampleStandardSizingPage.xaml.cs
│   │   │   ├── SampleSystemBackdropsWindow.xaml
│   │   │   └── SampleSystemBackdropsWindow.xaml.cs
│   │   ├── Themes/
│   │   │   ├── Generic.xaml
│   │   │   ├── HighContrast.xaml
│   │   │   ├── ItemTemplates.xaml
│   │   │   └── ItemTemplates.xaml.cs
│   │   ├── ThreadedUI/
│   │   │   ├── ThreadedProgressBar.xaml
│   │   │   ├── ThreadedProgressBar.xaml.cs
│   │   │   ├── ThreadedProgressRing.xaml
│   │   │   ├── ThreadedProgressRing.xaml.cs
│   │   │   ├── ThreadedVisualHost.cs
│   │   │   ├── ThreadedVisualHostBase.cs
│   │   │   └── VisualTargetPresentationSource.cs
│   │   ├── WindowWithCustomTitleBar.xaml
│   │   ├── WindowWithCustomTitleBar.xaml.cs
│   │   ├── app.manifest
│   │   └── iNKORE.UI.WPF.Modern.Gallery.csproj
│   ├── samples/
│   │   └── SamplesCommon/
│   │       ├── AccentColorPicker.xaml
│   │       ├── AccentColorPicker.xaml.cs
│   │       ├── AppTheme.cs
│   │       ├── AssemblyInfo.cs
│   │       ├── AutoPanningMode.cs
│   │       ├── BindableBase.cs
│   │       ├── CommonCommands.cs
│   │       ├── ControlExample.cs
│   │       ├── Converters/
│   │       │   ├── ColorToBrushConverter.cs
│   │       │   ├── EnumValuesConverter.cs
│   │       │   ├── InverseAppThemeConverter.cs
│   │       │   └── PixelsToGridLengthConverter.cs
│   │       ├── CrossFadeContentControl.cs
│   │       ├── DispatcherHelper.cs
│   │       ├── DynamicResourceHelper.cs
│   │       ├── Extensions.cs
│   │       ├── FontOverrides.cs
│   │       ├── LayoutDensitySelector.xaml
│   │       ├── LayoutDensitySelector.xaml.cs
│   │       ├── NonClippingStackPanel.cs
│   │       ├── Properties/
│   │       │   └── DesignTimeResources.xaml
│   │       ├── SampleFrame.cs
│   │       ├── SamplePages/
│   │       │   ├── SampleCompactSizingPage.xaml
│   │       │   ├── SampleCompactSizingPage.xaml.cs
│   │       │   ├── SamplePage1.xaml
│   │       │   ├── SamplePage1.xaml.cs
│   │       │   ├── SamplePage2.xaml
│   │       │   ├── SamplePage2.xaml.cs
│   │       │   ├── SamplePage3.xaml
│   │       │   ├── SamplePage3.xaml.cs
│   │       │   ├── SamplePage4.xaml
│   │       │   ├── SamplePage4.xaml.cs
│   │       │   ├── SamplePage5.xaml
│   │       │   ├── SamplePage5.xaml.cs
│   │       │   ├── SamplePage6.xaml
│   │       │   ├── SamplePage6.xaml.cs
│   │       │   ├── SamplePage7.xaml
│   │       │   ├── SamplePage7.xaml.cs
│   │       │   ├── SampleSettingsPage.xaml
│   │       │   ├── SampleSettingsPage.xaml.cs
│   │       │   ├── SampleStandardSizingPage.xaml
│   │       │   └── SampleStandardSizingPage.xaml.cs
│   │       ├── SamplesCommon - Backup (1).csproj
│   │       ├── SamplesCommon - Backup.csproj
│   │       ├── SamplesCommon.csproj
│   │       ├── ThemeManagerProxy.cs
│   │       └── Themes/
│   │           └── Generic.xaml
│   └── tools/
│       └── WinUIResourcesConverter/
│           ├── App.xaml
│           ├── App.xaml.cs
│           ├── MainWindow.xaml
│           ├── MainWindow.xaml.cs
│           ├── Properties/
│           │   ├── AssemblyInfo.cs
│           │   └── DesignTimeResources.xaml
│           ├── RESXConverter.cs
│           ├── ResourcesFile.cs
│           ├── WinUIResourcesConverter - Backup.csproj
│           ├── WinUIResourcesConverter.csproj
│           └── app.manifest
└── tools/
    └── IconKeyFileMaker/
        ├── App.xaml
        ├── App.xaml.cs
        ├── AssemblyInfo.cs
        ├── IconKeyFileMaker.csproj
        ├── MainWindow.xaml
        └── MainWindow.xaml.cs

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/FUNDING.yml
================================================
# These are supported funding model platforms

patreon: NotYoojun # Replace with a single Patreon username
custom: ["inkore.net/sponsor", "buymeacoffee.com/NotYoojun", "ifdian.net/a/NotYoojun"] # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
open_collective: "inkore" # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry


================================================
FILE: .github/ISSUE_TEMPLATE/01. problem.yml
================================================
name: 🐞 Problem Report
description: Report a problem with iNKORE.UI.WPF.Modern library
title: "Your Title Here"
labels: ["status: needs-triage"]
type: "Bug"

body:
  - type: markdown
    attributes:
      value: |
        Thanks for taking the time to fill out this bug report! Make sure you are reporting that something is wrong with the library and should be fixed. If you are requesting a feature, please do not use this template; if it has something to do with the documentation, please go to the [documentation repo](https://github.com/iNKORE-NET/Documentation/issues/new/choose) instead. Keep in mind that fields without a red asterisk are all optional.

        > All fields, including the title, descriptions and attachments (if any), should be in English (United States). Using other languages, including Chinese, is NOT permitted and will get your issue closed or deleted.
  - type: textarea
    id: description
    attributes:
      label: Describe the bug
      description: What happened?  A clear and concise description of what the bug is. Also tell us, what did you expect to happen?
      placeholder: I am doing ... What I expect is ... What actually happening is ...
    validations:
      required: true
  - type: textarea
    id: reproduction
    attributes:
      label: Reproduction
      description: How can we reproduce the bug? If you can, please provide the link to the repo that we can reproduce the bug in. Or provide the steps to reproduce the bug. **Unreproducible bugs will be closed!**
      placeholder: https://github.com/ghost/my-bug-reproduce
    validations:
      required: true
  - type: textarea
    id: solution
    attributes:
      label: Suggested Solution
      description: |
        Do you have any ideas how to fix this problem? If you do, write that down clearly below, if not, tell us that you don't know as well. 
        Please remember those issues with suggested solution submitted by the poster will have a higher priority and be handled first.
      placeholder: I think this can be fixed by...
    validations:
      required: false
  - type: input
    id: package-version
    attributes:
      label: Library Version
      description: Which version of this library are you using? (PS. The version of this library, not the version of .NET). You can see this in your .csproj file
      placeholder: 0.9.30 / 0.10.0 / ...
    validations:
      required: true
  - type: dropdown
    id: system
    attributes:
      label: Operating System
      description: Which operating system are you using to reproduce the bug?
      multiple: false
      options:
        - Windows 11
        - Windows 10
        - Windows 8/8.1
        - Windows 7
    validations:
      required: true
  - type: dropdown
    id: framework
    attributes:
      label: Framework
      description: Which framework are you using here?
      multiple: false
      options:
        - .NET Framework
        - .NET Core and .NET
    validations:
      required: true
  - type: input
    id: framework-version
    attributes:
      label: Framework Version
      description: Which version of the framework are you using? (PS. The version of .NET, not the version of this library)
      placeholder: 4.5.2 / 3.1 / 6.0.22 / 7...
    validations:
      required: true
  - type: dropdown
    id: source
    attributes:
      label: Source of Package
      description: Where do you get the library package from? Or where did you download them?
      multiple: false
      options:
        - NuGet.org  (Package)
        - Microsoft Store (Gallery)
        - Self-Compiled
        - Other (Tell us in the Additional Notes)
    validations:
      required: true
  - type: textarea
    id: additional
    attributes:
      label: Additional Notes
      description: Is there anything else you'd like to tell us? If it's related to theming, please tell us
    validations:
      required: false
  - type: checkboxes
    id: checkboxes
    attributes:
      label: Validations
      description: Before submitting the issue, please make sure you do the following.
      options:
        - label: "Check that there isn't [already an issue](https://github.com/iNKORE-NET/UI.WPF.Modern/issues) that reports the same or similar problem."
          required: true
        - label: "Check that this is a bug in the library that should be fixed, not a feature, also this is not about the documentation. (Or please choose the right repo and template.)"
          required: true
        - label: "This is one single problem, or a few problems with the same cause. (If you want to report multiple problems, please create one issue for every single problem.)"
          required: true
        - label: "You've checked that this problem still exists in the latest version. (Keep in mind that we don't provide any support for old versions.)"
          required: true
        - label: "Your issue, including the title and description, is written in English (United States), and there's no use of any other language in the issue. Using other languages, including Chinese, is NOT welcome and will get your issue closed or deleted. (您的问题 (包括标题和描述) 均使用英文 (美国) 撰写,不使用任何其他语言。使用其他语言 (包括中文) 是不允许的,您的问题将被关闭或删除。)"
          required: true
        - label: "You know that we can't guarantee that we will satisfy your request. This is not really our duty to do everything anyone asks for. Also, you will treat our staff, contributors, and other users with respect and kindness."
          required: true
        - label: "You're sure there's something wrong with the library itself, not how you're using it. (If you are having issues using it and need help, please go to [discussion](https://github.com/iNKORE-NET/UI.WPF.Modern/discussions/new?category=help-support).)"
          required: true
    validations:
      required: true


================================================
FILE: .github/ISSUE_TEMPLATE/02. feature.yml
================================================
name: 💡 Feature Request
description: Suggest an idea, new feature or component for the library.
title: "Your Title Here"
labels: ["status: needs-triage"]
type: "Feature"

body:
  - type: markdown
    attributes:
      value: |
        Thanks for taking the time to fill out this feature request! By taking this form, you're asking for a new feature, improvement or other requests to the project. If you're looking to report a bug, or ask for a project issue, please use the appropriate template;  if it has something to do with the documentation, please go to the [documentation repo](https://github.com/iNKORE-NET/Documentation/issues/new/choose) instead. Keep in mind that fields without a red asterisk are all optional.
                
        > All fields, including the title, descriptions and attachments (if any), should be in English (United States). Using other languages, including Chinese, is NOT permitted and will get your issue closed or deleted.
  - type: textarea
    id: why
    attributes:
      label: Description
      description: Clear and concise description of the problem. Please make the reason and usecases as detailed as possible.
      placeholder: As a developer using this library, I want ... so that ...
    validations:
      required: false
  - type: textarea
    id: solution
    attributes:
      label: Suggested Solution
      description: |
        Describe the solution you'd like, and how to implement this feature. 
        Please remember those issues with suggested solution submitted by the poster will have a higher priority and be handled first.
      placeholder: |
        First, we can ...
        Then, do this ...
        ...
    validations:
      required: false
  - type: textarea
    id: alternative
    attributes:
      label: Alternative
      description: Clear and concise description of any alternative solutions or features you've considered.
    validations:
      required: false
  - type: textarea
    id: contribution
    attributes:
      label: Contribution
      description: |
        Are you willing to contribute to add this feature by submitting a pull request? If you are, please tell us when you plan to start working on it and submit the PR.
        Open source projects are not a one-man show. Only when everyone actively contributes can this project be better.
      placeholder: |
        - e.g. I'm planning to start working on it next week and submit the PR by the end of the month. 
        - e.g. Sorry I can't help with that, because...
    validations:
      required: true
  - type: textarea
    id: additional
    attributes:
      label: Additional Notes
      description: Is there anything else you'd like to tell us? If it's related to theming, please tell us
    validations:
      required: false
  - type: checkboxes
    id: checkboxes
    attributes:
      label: Validations
      description: Before submitting the issue, please make sure you do the following.
      options:
        - label: "Check that there isn't [already an issue](https://github.com/iNKORE-NET/UI.WPF.Modern/issues) that reports the same or similar problem."
          required: true
        - label: "Check that this is a request that is a feature or something we can take action on, and also this is not about the documentation. (Or please choose the right repo and template.)"
          required: true
        - label: "This is one single feature, or a few features with the same core. (If you want to report multiple feature, please create one issue for every single feature.)"
          required: true
        - label: "You've checked that this feature is unavailable yet in the latest version.( Keep in mind that we don't provide any support for old versions.)"
          required: true
        - label: "Your issue, including the title and description, is written in English (United States), and there's no use of any other language in the issue. Using other languages, including Chinese, is NOT welcome and will get your issue closed or deleted. (您的问题 (包括标题和描述) 均使用英文 (美国) 撰写,未使用任何其他语言。使用其他语言 (包括中文) 是不允许的,您的问题将被关闭或删除。)"
          required: true
        - label: "You know that we can't guarantee that we will satisfy your request. This is not really our duty to do everything anyone asks for. Also, you will treat our staff, contributors, and other users with respect and kindness."
          required: true
        - label: "You're sure it's something to enhance with the library itself, not how you're using it. (If you are having issues using it and need help, please go to [discussion](https://github.com/iNKORE-NET/UI.WPF.Modern/discussions/new?category=help-support).)"
          required: true
    validations:
      required: true


================================================
FILE: .github/ISSUE_TEMPLATE/config.yml
================================================
blank_issues_enabled: false
contact_links:
  - name: Documentation Bug / Feature
    url: https://github.com/iNKORE-NET/Documentation/issues/new/choose
    about: Everything related to the docs should be in the Documentation repo.
  - name: I Need Help & Support
    url: Please go to discussion section to ask others for help when you need
    about: https://github.com/iNKORE-NET/UI.WPF.Modern/discussions/new?category=help-support
  - name: Go to Discord Chat
    url: https://discord.gg/m6NPNVk4bs
    about: Ask questions and discuss with other developers users in real time.
  - name: Go to Documentation
    url: https://docs.inkore.net/ui-wpf-modern
    about: Look up for the documentation and tutorials we prepared for you.

================================================
FILE: .github/workflows/build.yml
================================================
name: Build Controls & Gallery

# This workflow builds the iNKORE.UI.WPF.Modern.Controls and iNKORE.UI.WPF.Modern.Gallery projects and uploads the artifacts for use in other workflows or releases.

on:
  push:
    branches: [  ]
  pull_request:
    branches: [  ]
  workflow_dispatch:

jobs:
  build:
    runs-on: windows-latest
    
    steps:
    - uses: actions/checkout@v3
      with:
        fetch-depth: 0

    - name: Setup MSBuild
      uses: microsoft/setup-msbuild@v1.1

    - name: Setup .NET
      uses: actions/setup-dotnet@v3
      with:
        dotnet-version: |
          6.0.x
          7.0.x

    - name: Restore NuGet packages
      run: |
        nuget restore iNKORE.UI.WPF.Modern.sln

    - name: Build solution
      run: |
        msbuild iNKORE.UI.WPF.Modern.sln /p:Configuration=Release /p:Platform="Any CPU"

    - name: Upload Controls artifact (.NET 6.0)
      uses: actions/upload-artifact@v4
      with:
        name: iNKORE.UI.WPF.Modern.Controls  
        path: source\iNKORE.UI.WPF.Modern.Controls\bin\Release\net6.0-windows10.0.18362.0

    - name: Upload Gallery artifact
      uses: actions/upload-artifact@v4
      with:
        name: iNKORE.UI.WPF.Modern.Gallery
        path: source\iNKORE.UI.WPF.Modern.Gallery\bin\Release\net6.0-windows10.0.18362.0

================================================
FILE: .gitignore
================================================
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore

desktop.ini

# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs

# Mono auto generated files
mono_crash.*

# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/

# Visual Studio 2015/2017 cache/options directory
.vs/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

# Visual Studio 2017 auto generated files
Generated\ Files/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml

# Build Results of an ATL Project
[Dd]ebugPS/
[Rr]eleasePS/
dlldata.c

# Benchmark Results
BenchmarkDotNet.Artifacts/

# .NET Core
project.lock.json
project.fragment.lock.json
artifacts/

# ASP.NET Scaffolding
ScaffoldingReadMe.txt

# StyleCop
StyleCopReport.xml

# Files built by Visual Studio
*_i.c
*_p.c
*_h.h
*.ilk
*.meta
*.obj
*.iobj
*.pch
*.pdb
*.ipdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*_wpftmp.csproj
*.log
*.tlog
*.vspscc
*.vssscc
.builds
*.pidb
*.svclog
*.scc

# Chutzpah Test files
_Chutzpah*

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opendb
*.opensdf
*.sdf
*.cachefile
*.VC.db
*.VC.VC.opendb

# Visual Studio profiler
*.psess
*.vsp
*.vspx
*.sap

# Visual Studio Trace Files
*.e2e

# TFS 2012 Local Workspace
$tf/

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# AxoCover is a Code Coverage Tool
.axoCover/*
!.axoCover/settings.json

# Coverlet is a free, cross platform Code Coverage Tool
coverage*.json
coverage*.xml
coverage*.info

# Visual Studio code coverage results
*.coverage
*.coveragexml

# NCrunch
_NCrunch_*
.*crunch*.local.xml
nCrunchTemp_*

# MightyMoose
*.mm.*
AutoTest.Net/

# Web workbench (sass)
.sass-cache/

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
# Note: Comment the next line if you want to checkin your web deploy settings,
# but database connection strings (with potential passwords) will be unencrypted
*.pubxml
*.publishproj

# Microsoft Azure Web App publish settings. Comment the next line if you want to
# checkin your Azure Web App publish settings, but sensitive information contained
# in these scripts will be unencrypted
PublishScripts/

# NuGet Packages
*.nupkg
# NuGet Symbol Packages
*.snupkg
# The packages folder can be ignored because of Package Restore
**/[Pp]ackages/*
# except build/, which is used as an MSBuild target.
!**/[Pp]ackages/build/
# Uncomment if necessary however generally it will be regenerated when needed
#!**/[Pp]ackages/repositories.config
# NuGet v3's project.json files produces more ignorable files
*.nuget.props
*.nuget.targets

# Nuget personal access tokens and Credentials
nuget.config

# Microsoft Azure Build Output
csx/
*.build.csdef

# Microsoft Azure Emulator
ecf/
rcf/

# Windows Store app package directories and files
AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
*.appx
*.appxbundle
*.appxupload

# Visual Studio cache files
# files ending in .cache can be ignored
*.[Cc]ache
# but keep track of directories ending in .cache
!?*.[Cc]ache/

# Others
ClientBin/
~$*
*~
*.dbmdl
*.dbproj.schemaview
*.jfm
*.pfx
*.publishsettings
orleans.codegen.cs

# Including strong name files can present a security risk
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
#*.snk

# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file
# to a newer Visual Studio version. Backup files are not needed,
# because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm
ServiceFabricBackup/
*.rptproj.bak

# SQL Server files
*.mdf
*.ldf
*.ndf

# Business Intelligence projects
*.rdl.data
*.bim.layout
*.bim_*.settings
*.rptproj.rsuser
*- [Bb]ackup.rdl
*- [Bb]ackup ([0-9]).rdl
*- [Bb]ackup ([0-9][0-9]).rdl

# Microsoft Fakes
FakesAssemblies/

# GhostDoc plugin setting file
*.GhostDoc.xml

# Node.js Tools for Visual Studio
.ntvs_analysis.dat
node_modules/

# Visual Studio 6 build log
*.plg

# Visual Studio 6 workspace options file
*.opt

# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw

# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions

# Paket dependency manager
.paket/paket.exe
paket-files/

# FAKE - F# Make
.fake/

# CodeRush personal settings
.cr/personal

# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc

# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

# Tabs Studio
*.tss

# Telerik's JustMock configuration file
*.jmconfig

# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs

# OpenCover UI analysis results
OpenCover/

# Azure Stream Analytics local run output
ASALocalRun/

# MSBuild Binary and Structured Log
*.binlog

# NVidia Nsight GPU debugger configuration file
*.nvuser

# MFractors (Xamarin productivity tool) working folder
.mfractor/

# Local History for Visual Studio
.localhistory/

# BeatPulse healthcheck temp database
healthchecksdb

# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd

# VS Code files for those working on multiple tools
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace

# Local History for Visual Studio Code
.history/

# Windows Installer files from build outputs
*.cab
*.msi
*.msix
*.msm
*.msp

# JetBrains Rider
.idea/
*.sln.iml

# NuGet directory
.nuget/


================================================
FILE: .vscode/settings.json
================================================
{
    "[yaml]":
    {
        "editor.wordWrap": "on"
    }
}

================================================
FILE: Directory.Build.props
================================================
<Project>
  <PropertyGroup>
    <Product>iNKORE.UI.WPF.Modern</Product>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>
</Project>


================================================
FILE: Directory.Build.targets
================================================
<Project>
  <PropertyGroup Condition="'$(PackageId)' != ''">
    <PackageLicenseExpression>MIT</PackageLicenseExpression>
    <PackageProjectUrl>https://github.com/InkoreStudios/UI.WPF.Modern</PackageProjectUrl>
    <PackageTags>WPF XAML UI Theme Controls Fluent Modern Metro WinUI</PackageTags>
    <PackageOutputPath>$(MSBuildThisFileDirectory)artifacts</PackageOutputPath>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)'=='Release'">
    <Optimize>True</Optimize>
  </PropertyGroup>

  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '4.6.1')) or
                            '$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
    <DefineConstants>$(DefineConstants);NET461_OR_NEWER</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '4.6.2')) or
                            '$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
    <DefineConstants>$(DefineConstants);NET462_OR_NEWER</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '4.7')) or
                            '$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
    <DefineConstants>$(DefineConstants);NET47_OR_NEWER</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '4.7.2')) or
                            '$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
    <DefineConstants>$(DefineConstants);NET472_OR_NEWER</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '4.8')) or
                            '$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
    <DefineConstants>$(DefineConstants);NET48_OR_NEWER</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp' and $([MSBuild]::VersionGreaterThanOrEquals($(TargetFrameworkVersion), '5.0'))">
    <DefineConstants>$(DefineConstants);NET5_0_OR_NEWER</DefineConstants>
  </PropertyGroup>

  <PropertyGroup Condition="'$(SupportedOSPlatform)' != '' and $([MSBuild]::VersionGreaterThan($(SupportedOSPlatform), '7.0'))">
    <SupportedOSPlatform>7.0</SupportedOSPlatform>
  </PropertyGroup>
  <Choose>
    <When Condition="'$(UseWinRT)' == 'true'">
      <Choose>
        <When Condition="$(DefineConstants.Contains('NET5_0_OR_NEWER'))" />
        <When Condition="$(DefineConstants.Contains('NET461_OR_NEWER'))">
          <ItemGroup>
            <PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.22621.755" />
          </ItemGroup>
        </When>
        <Otherwise>
          <ItemGroup>
            <PackageReference Include="System.Runtime.WindowsRuntime" Version="4.7.0" />
            <Reference Include="Windows">
              <HintPath>$(MSBuildThisFileDirectory)libraries\Windows.WinMD</HintPath>
              <IsWinMDFile>true</IsWinMDFile>
              <Private>false</Private>
            </Reference>
            <Reference Include="Windows.Foundation.FoundationContract">
              <HintPath>$(MSBuildThisFileDirectory)libraries\Windows.Foundation.FoundationContract.winmd</HintPath>
              <IsWinMDFile>true</IsWinMDFile>
              <Private>false</Private>
            </Reference>
            <Reference Include="Windows.Foundation.UniversalApiContract">
              <HintPath>$(MSBuildThisFileDirectory)libraries\Windows.Foundation.UniversalApiContract.winmd</HintPath>
              <IsWinMDFile>true</IsWinMDFile>
              <Private>false</Private>
            </Reference>
          </ItemGroup>
        </Otherwise>
      </Choose>
    </When>
  </Choose>
</Project>


================================================
FILE: LICENSE.md
================================================
# iNKORE.UI.WPF.Modern Software License

## License Terms

By using the software "iNKORE.UI.WPF.Modern" (hereinafter referred to as "the Software"), you agree to the following terms and conditions:

### 1. General Restrictions

- **Commercial Use**: You may not incorporate any part of the Software into commercial products without explicit written permission from iNKORE Studios.

- **Distribution**: All software incorporating or referencing the Software must be fully open-source unless otherwise explicitly permitted by a separate agreement. You are free to choose any widely-recognized open-source license for your project. There is no requirement to adopt this specific license for your own software, as long as the chosen license clearly meets the generally accepted definition of "open source."

- **No Endorsement**: Neither the name of the authors (iNKORE Studios and all contributors) nor the name of the Software may be used to endorse or promote products derived from the Software without prior written permission.

- **Commercial Activities Prohibited**: You are prohibited from selling, renting, leasing, or sublicensing the Software.

### 2. Attribution

Any product incorporating the Software must provide clear and visible attribution, including:

- Project Name: **iNKORE.UI.WPF.Modern**
- Authors: **iNKORE Studios and all iNKORE.UI.WPF.Modern contributors**
- Project Repository: [https://github.com/iNKORE-NET/UI.WPF.Modern](https://github.com/iNKORE-NET/UI.WPF.Modern)

This attribution must appear clearly within the product's README file or the "About" section accessible to the end user.

### 3. Modifications and Derivative Works

You are permitted to create modifications and derivative works ("Derivative Works") of the Software subject to the following conditions:

- **Derivative Works with Substantially Similar Purpose**: If a Derivative Work serves substantially the same purpose as the original Software (e.g., creating another WPF control library based on this Software), it must be licensed exclusively under these license terms.
- **Derivative Works with Distinct Purpose**: If a Derivative Work serves a significantly different purpose (e.g., developing an application that utilizes the Software), adoption of this license for your Derivative Work is not required, though compliance with all other terms of this license remains mandatory.

### 4. Prohibited Uses

Under no circumstances may the Software be used in any product or activity:

- Designed for illegal activities, including unauthorized access to computer systems (e.g., hacking or cracking).
- Intended to create malicious software (malware), including viruses, worms, or similar destructive software.
- In violation of copyrights, intellectual property rights, or other legal rights of third parties, including iNKORE Studios and its affiliates.

### 5. Warranty and Liability Disclaimer

THE SOFTWARE IS PROVIDED "AS IS," WITHOUT ANY WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.

IN NO EVENT SHALL iNKORE STUDIOS OR ITS CONTRIBUTORS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY ARISING FROM THE USE OF OR INABILITY TO USE THE SOFTWARE.

### 6. Termination

Violation of any term outlined in this license will result in immediate termination of your rights granted under this license. Upon termination, you must cease all use and distribution of the Software immediately.

### 7. Exceptions and Commercial Subscription

Exceptions to the above terms may be granted by iNKORE Studios on a case-by-case basis. For inquiries or permissions, contact [studios@inkore.net](mailto:studios@inkore.net).

A commercial subscription option is available if you require commercial usage rights or are unable to comply fully with these license terms. This subscription is based on a donation model with flexible pricing tailored to your budget.

- It's more like a donation, because we don't profit from that and your donation will go straight to server running and other costs that we're incurring.

- We currently do not limit the charge to a specific amount, so you can choose the amount that fits your budget. Just donate as much as you value our work. We'd be happy to receive a few cups of coffee every month which keeps the project alive.

- We can also provide support and assistance with the project, if needed, discussed on a case-by-case basis.

To discuss and arrange a commercial subscription, contact [studios@inkore.net](mailto:studios@inkore.net).

> We're no charity. We won't let anyone profit off our hard work while we can't even keep ourselves fed and clothed, digging into our own pockets just to barely keep the servers running and development going.

### 8. Contributor Exception

Frequent contributors who substantially aid in developing or maintaining the Software may receive specific exemptions to certain restrictions upon request and approval, determined at the sole discretion of iNKORE Studios. Please contact [studios@inkore.net](mailto:studios@inkore.net) to see if you qualify for such exceptions and discuss further arrangements.

---

For further clarification or specific requests, please contact iNKORE Studios at [studios@inkore.net](mailto:studios@inkore.net).


================================================
FILE: README.md
================================================
<a href="https://docs.inkore.net/ui-wpf-modern/introduction">
  <img src="https://github.com/iNKORE-NET/UI.WPF.Modern/blob/main/assets/images/banners/UI.WPF.Modern_Main_1280w.png?raw=true" alt="iNKORE.UI.WPF.Modern Banner" />
</a>
<br>
<p align="center">Modern (Fluent 2) styles and controls for your WPF applications.</p>

<h1 align="center">
  iNKORE.UI.WPF.Modern
</h1>

<p align="center">
    <strong>a.k.a. iUWM</strong>.
    Give us a star if you like this!
</p>

<p align="center">
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/releases"><img src="https://img.shields.io/github/downloads/iNKORE-NET/UI.WPF.Modern/total?color=%239F7AEA" alt="Release Downloads"></a>
  <a href="#"><img src="https://img.shields.io/github/repo-size/iNKORE-NET/UI.WPF.Modern?color=6882C4" alt="GitHub Repo Size"></a>
  <a href="#"><img src="https://img.shields.io/github/last-commit/iNKORE-NET/UI.WPF.Modern?color=%23638e66" alt="Last Commit"></a>
  <a href="#"><img src="https://img.shields.io/github/issues/iNKORE-NET/UI.WPF.Modern?color=f76642" alt="Issues"></a>
  <a href="#"><img src="https://img.shields.io/github/v/release/iNKORE-NET/UI.WPF.Modern?color=%4CF4A8B4" alt="Latest Version"></a>
  <a href="#"><img src="https://img.shields.io/github/release-date/iNKORE-NET/UI.WPF.Modern?color=%23b0a3e8" alt="Release Date"></a>
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/commits/"><img src="https://img.shields.io/github/commit-activity/m/iNKORE-NET/UI.WPF.Modern" alt="Commit Activity"></a>
  <a href="https://www.nuget.org/packages/iNKORE.UI.WPF.Modern"><img src="https://img.shields.io/nuget/v/iNKORE.UI.WPF.Modern?color=blue&logo=nuget" alt="Nuget latest version"></a>
  <a href="https://www.nuget.org/packages/iNKORE.UI.WPF.Modern"><img src="https://img.shields.io/nuget/dt/iNKORE.UI.WPF.Modern?color=blue&logo=nuget" alt="Nuget download conut"></a>
</p>

<p align="center">
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/network/members"><img src="https://img.shields.io/github/forks/iNKORE-NET/UI.WPF.Modern?style=social" alt="Forks"></a>
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/stargazers"><img src="https://img.shields.io/github/stars/iNKORE-NET/UI.WPF.Modern?style=social" alt="Stars"></a>
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/watchers"><img src="https://img.shields.io/github/watchers/iNKORE-NET/UI.WPF.Modern?style=social" alt="Watches"></a>
  <a href="https://github.com/iNKORE-NET/UI.WPF.Modern/discussions"><img src="https://img.shields.io/github/discussions/iNKORE-NET/UI.WPF.Modern?style=social" alt="Discussions"></a>
  <a href="https://discord.gg/m6NPNVk4bs"><img src="https://img.shields.io/discord/1092738458805608561?style=social&label=Discord&logo=discord" alt="Discord"></a>
  <a href="https://twitter.com/NotYoojun"><img src="https://img.shields.io/twitter/follow/NotYoojun?style=social" alt="NotYoojun's Twitter"></a>
</p>

<p align="center">
 <a href="https://docs.inkore.net/zh-cn/ui-wpf-modern/introduction">Documentation</a> | <a href="https://www.inkore.net">Official Website</a>

<br align="center">

## ✨ Features

- Modern styles and new features for the majority of the stock WPF controls.

- Light and dark themes that can be easily customized. A high contrast theme is also included.

- Mica and acrylic backdrops, snap layouts, and other modern features available.

- Additional controls to help you build modern applications. With controls ported from the [Windows UI Library](https://github.com/microsoft/microsoft-ui-xaml), Community Toolkit, and also custom controls made by us.

- Targets .NET Framework, .NET 6.0 or higher. Runs on Windows 7 or higher (Windows 10 or higher recommended). *(We will never leave Windows 7 users behind until the market **FULLY** says goodbye to it)*

## 🤔 How to use

- Check out the [Getting Started](https://docs.inkore.net/ui-wpf-modern/onboarding) guide on our documentation site.

- We're currently working on a documentation site that simplifies your learning curve. However this can be a huge process. You can preview the documentation site at [docs.inkore.net/ui-wpf-modern](https://docs.inkore.net/ui-wpf-modern/introduction) (remember it's not finished yet). Feedback and contributions are welcome and strongly needed.

> [!NOTE]
> It's time for a brand-new docmentation set!
>
> We are looking for passionate volunteers to help us write and improve the documentation for the
iNKORE.UI.WPF.Modern library. Your contributions will be invaluable in making this project more
accessible and user-friendly for the entire community.
>
> Whether you are an experienced developer or just enthusiastic about contributing to open-source, we
welcome your help!
>
> It's very easy to join us! You can create a PR in our [Documentation repository](https://github.com/iNKORE-NET/Documentation) when you're free. You can also join our [Discord server](https://discord.gg/m6NPNVk4bs) and [Telegram group](https://t.me/iNKORE) to hang out with us.

- We provide a gallery application as well. You can check the latest version of the gallery in GitHub Actions, or download the stable version from Microsoft Store.

    <a href="https://apps.microsoft.com/detail/9n3js11zc38g?mode=direct">
        <picture>
            <source media="(prefers-color-scheme: dark)"
                srcset="https://get.microsoft.com/images/en-us%20light.svg"/>
            <img src="https://get.microsoft.com/images/en-us%20dark.svg"
                width="200" alt="iNKORE.UI.WPF.Modern Gallery"/>
        </picture>
    </a>

- This project is named `iNKORE.UI.WPF.Modern`. You can call it as `iUWM` for short if convenient. FYI, iNKORE is the name of the studio (company) that maintains this project. THIS PROJECT is **NOT** called ~~iNKORE~~, ~~iNKORE UI~~, or anything else.

## 🙋🏻‍♂️ Contribution

- Want to contribute? The team encourages community feedback and contributions. If the project is not working properly, please file a report. We welcome any issues and pull requests submitted on GitHub following our contribution guidelines.
  
- Help us promote the project by starring the repository, sharing it on social media, telling your friends about it and add gadgets to your projects ([instructions here](https://github.com/iNKORE-NET/UI.WPF.Modern/blob/main/docs/promotions.md))

- We're also looking for volunteers to help us with the documentation and its translations, and other tasks. Check the [documentation repository](https://github.com/iNKORE-NET/Documentation) for more information.

- Sponsor us at https://www.inkore.net/donate to help us keep the project alive and well. Your support is greatly appreciated!


## 🌐 Community

Join our community to chat instantly with the developers, keep up with the news and develop together!
Every hive thrives on harmony. Before you join, make sure to skim our [Community Guidelines](https://www.inkore.net/about/community#rules-common).

Follow us across our social media platforms to stay updated on our latest news, products, and behind-the-scenes content!

https://www.inkore.net/about/socials

Open [an issue](https://github.com/iNKORE-NET/UI.WPF.Modern/issues/new) or [discussion](https://github.com/iNKORE-NET/UI.WPF.Modern/discussions) to deal with bugs and suggest new features.


## 🕹️ Donate & Support

Your support is crucial for us to keep creating amazing free products and open-source projects. This isn't charity - it's a partnership. Your LOVE and money goes directly into our FREE and OPEN-SOURCE projects. Let's build a better creative future, together. By supporting us with a voluntary donation. Even a small amount makes us jumping happy through our apartment. Just donate as much as you value our work.

Sponsor us here: <https://www.inkore.net/donate>

## 🙏🏻 Special Thanks to

- All contributors of projects listed in the credits

- All contributors who helped us build this project

- Everyone who donated us to let us walk further

- ~~wherewhere~~ (He deserves to be crossed out.

  More info: https://docs.inkore.net/blog/2024/09/17/reflection-interest-in-opensource-community)

## ⚽ Credits

The project is maintained by Yoojun Zhou from iNKORE Studios and other contributors.
Please check LICENSE.md for more information about the license.

The iNKORE.UI.WPF.Modern and iNKORE.UI.WPF.Modern.Controls projects are based, or using the following projects:

- .NET Framework, .NET and .NET Desktop by Microsoft

- ModernWpf mainly by Kinnara and wherewhere

- Fluent System Icons by Microsoft

- Resource.Embedder by Marc Stan

- System.ValueTuple, System.Runtime by Microsoft

- CommunityToolkit by Microsoft

- Windows UI Library by Microsoft

Besides above, the gallery app is also using the following projects:

- AvalonEdit by ICSharpCode

- ColorCodeStandard by Microsoft and Matt Hawley

- Newtonsoft.Json by James Newton-King

iNKORE Studios is not affiliated with Microsoft or any other company. The project is a community-driven project. Read LICENSE before using any of the code.


================================================
FILE: assets/others/FluentSystemIcons-Filled.json
================================================
{
  "ic_fluent_access_time_24_filled": 61697,
  "ic_fluent_accessibility_16_filled": 61698,
  "ic_fluent_accessibility_20_filled": 61699,
  "ic_fluent_accessibility_24_filled": 61700,
  "ic_fluent_accessibility_28_filled": 61701,
  "ic_fluent_add_12_filled": 61703,
  "ic_fluent_add_16_filled": 61704,
  "ic_fluent_add_20_filled": 61705,
  "ic_fluent_add_24_filled": 61706,
  "ic_fluent_add_28_filled": 61707,
  "ic_fluent_add_circle_20_filled": 61708,
  "ic_fluent_add_circle_24_filled": 61709,
  "ic_fluent_add_circle_28_filled": 61710,
  "ic_fluent_airplane_20_filled": 61711,
  "ic_fluent_airplane_24_filled": 61712,
  "ic_fluent_airplane_take_off_16_filled": 61713,
  "ic_fluent_airplane_take_off_20_filled": 61714,
  "ic_fluent_airplane_take_off_24_filled": 61715,
  "ic_fluent_alert_20_filled": 61716,
  "ic_fluent_alert_24_filled": 61717,
  "ic_fluent_alert_28_filled": 61718,
  "ic_fluent_alert_off_16_filled": 61719,
  "ic_fluent_alert_off_20_filled": 61720,
  "ic_fluent_alert_off_24_filled": 61721,
  "ic_fluent_alert_off_28_filled": 61722,
  "ic_fluent_alert_on_24_filled": 61723,
  "ic_fluent_alert_snooze_20_filled": 61724,
  "ic_fluent_alert_snooze_24_filled": 61725,
  "ic_fluent_alert_urgent_20_filled": 61726,
  "ic_fluent_alert_urgent_24_filled": 61727,
  "ic_fluent_animal_dog_20_filled": 61728,
  "ic_fluent_animal_dog_24_filled": 61729,
  "ic_fluent_app_folder_20_filled": 61730,
  "ic_fluent_app_folder_24_filled": 61731,
  "ic_fluent_app_generic_24_filled": 61732,
  "ic_fluent_app_recent_24_filled": 61733,
  "ic_fluent_app_store_24_filled": 61738,
  "ic_fluent_app_title_24_filled": 61739,
  "ic_fluent_approvals_app_24_filled": 61744,
  "ic_fluent_approvals_app_28_filled": 61745,
  "ic_fluent_apps_16_filled": 61746,
  "ic_fluent_apps_20_filled": 61747,
  "ic_fluent_apps_24_filled": 61748,
  "ic_fluent_apps_28_filled": 61749,
  "ic_fluent_apps_add_in_20_filled": 61750,
  "ic_fluent_apps_add_in_24_filled": 61751,
  "ic_fluent_apps_list_24_filled": 61752,
  "ic_fluent_archive_20_filled": 61753,
  "ic_fluent_archive_24_filled": 61754,
  "ic_fluent_archive_28_filled": 61755,
  "ic_fluent_archive_48_filled": 61756,
  "ic_fluent_arrow_clockwise_20_filled": 61757,
  "ic_fluent_arrow_clockwise_24_filled": 61758,
  "ic_fluent_arrow_counterclockwise_20_filled": 61759,
  "ic_fluent_arrow_counterclockwise_24_filled": 61760,
  "ic_fluent_arrow_curve_down_left_20_filled": 61761,
  "ic_fluent_arrow_curve_down_right_20_filled": 61762,
  "ic_fluent_arrow_curve_up_left_20_filled": 61765,
  "ic_fluent_arrow_curve_up_right_20_filled": 61766,
  "ic_fluent_arrow_down_16_filled": 61767,
  "ic_fluent_arrow_down_20_filled": 61768,
  "ic_fluent_arrow_down_24_filled": 61769,
  "ic_fluent_arrow_down_28_filled": 61770,
  "ic_fluent_arrow_down_left_24_filled": 61771,
  "ic_fluent_arrow_download_16_filled": 61775,
  "ic_fluent_arrow_download_20_filled": 61776,
  "ic_fluent_arrow_download_24_filled": 61777,
  "ic_fluent_arrow_download_48_filled": 61778,
  "ic_fluent_arrow_expand_24_filled": 61780,
  "ic_fluent_arrow_forward_16_filled": 61782,
  "ic_fluent_arrow_forward_20_filled": 61783,
  "ic_fluent_arrow_forward_24_filled": 61784,
  "ic_fluent_arrow_import_20_filled": 61785,
  "ic_fluent_arrow_import_24_filled": 61786,
  "ic_fluent_arrow_left_20_filled": 61787,
  "ic_fluent_arrow_left_24_filled": 61788,
  "ic_fluent_arrow_left_28_filled": 61789,
  "ic_fluent_arrow_maximize_16_filled": 61790,
  "ic_fluent_arrow_maximize_20_filled": 61791,
  "ic_fluent_arrow_maximize_24_filled": 61792,
  "ic_fluent_arrow_maximize_28_filled": 61793,
  "ic_fluent_arrow_maximize_vertical_20_filled": 61794,
  "ic_fluent_arrow_maximize_vertical_24_filled": 61795,
  "ic_fluent_arrow_minimize_16_filled": 61796,
  "ic_fluent_arrow_minimize_20_filled": 61797,
  "ic_fluent_arrow_minimize_24_filled": 61798,
  "ic_fluent_arrow_minimize_28_filled": 61799,
  "ic_fluent_arrow_minimize_vertical_24_filled": 61800,
  "ic_fluent_arrow_move_24_filled": 61801,
  "ic_fluent_arrow_next_20_filled": 61802,
  "ic_fluent_arrow_next_24_filled": 61803,
  "ic_fluent_arrow_previous_20_filled": 61804,
  "ic_fluent_arrow_previous_24_filled": 61805,
  "ic_fluent_arrow_redo_20_filled": 61806,
  "ic_fluent_arrow_redo_24_filled": 61807,
  "ic_fluent_arrow_repeat_all_16_filled": 61808,
  "ic_fluent_arrow_repeat_all_20_filled": 61809,
  "ic_fluent_arrow_repeat_all_24_filled": 61810,
  "ic_fluent_arrow_repeat_all_off_16_filled": 61811,
  "ic_fluent_arrow_repeat_all_off_20_filled": 61812,
  "ic_fluent_arrow_repeat_all_off_24_filled": 61813,
  "ic_fluent_arrow_reply_16_filled": 61814,
  "ic_fluent_arrow_reply_20_filled": 61815,
  "ic_fluent_arrow_reply_24_filled": 61816,
  "ic_fluent_arrow_reply_48_filled": 61817,
  "ic_fluent_arrow_reply_all_16_filled": 61818,
  "ic_fluent_arrow_reply_all_20_filled": 61819,
  "ic_fluent_arrow_reply_all_24_filled": 61820,
  "ic_fluent_arrow_reply_all_48_filled": 61821,
  "ic_fluent_arrow_reply_down_16_filled": 61822,
  "ic_fluent_arrow_reply_down_20_filled": 61823,
  "ic_fluent_arrow_reply_down_24_filled": 61824,
  "ic_fluent_arrow_right_20_filled": 61825,
  "ic_fluent_arrow_right_24_filled": 61826,
  "ic_fluent_arrow_right_28_filled": 61827,
  "ic_fluent_arrow_rotate_clockwise_20_filled": 61829,
  "ic_fluent_arrow_rotate_clockwise_24_filled": 61830,
  "ic_fluent_arrow_rotate_counterclockwise_20_filled": 61831,
  "ic_fluent_arrow_rotate_counterclockwise_24_filled": 61832,
  "ic_fluent_arrow_sort_20_filled": 61834,
  "ic_fluent_arrow_sort_24_filled": 61835,
  "ic_fluent_arrow_sort_28_filled": 61836,
  "ic_fluent_arrow_swap_20_filled": 61837,
  "ic_fluent_arrow_swap_24_filled": 61838,
  "ic_fluent_arrow_sync_12_filled": 61839,
  "ic_fluent_arrow_sync_20_filled": 61840,
  "ic_fluent_arrow_sync_24_filled": 61841,
  "ic_fluent_arrow_sync_circle_16_filled": 61842,
  "ic_fluent_arrow_sync_circle_20_filled": 61843,
  "ic_fluent_arrow_sync_circle_24_filled": 61844,
  "ic_fluent_arrow_sync_off_12_filled": 61845,
  "ic_fluent_arrow_trending_16_filled": 61846,
  "ic_fluent_arrow_trending_20_filled": 61847,
  "ic_fluent_arrow_trending_24_filled": 61848,
  "ic_fluent_arrow_undo_20_filled": 61849,
  "ic_fluent_arrow_undo_24_filled": 61850,
  "ic_fluent_arrow_up_20_filled": 61851,
  "ic_fluent_arrow_up_24_filled": 61852,
  "ic_fluent_arrow_up_28_filled": 61853,
  "ic_fluent_arrow_up_left_24_filled": 61857,
  "ic_fluent_arrow_up_right_24_filled": 61859,
  "ic_fluent_arrow_upload_20_filled": 61860,
  "ic_fluent_arrow_upload_24_filled": 61861,
  "ic_fluent_arrows_bidirectional_24_filled": 61862,
  "ic_fluent_attach_16_filled": 61864,
  "ic_fluent_attach_20_filled": 61865,
  "ic_fluent_attach_24_filled": 61866,
  "ic_fluent_autocorrect_24_filled": 61870,
  "ic_fluent_autosum_20_filled": 61871,
  "ic_fluent_autosum_24_filled": 61872,
  "ic_fluent_backspace_20_filled": 61873,
  "ic_fluent_backspace_24_filled": 61874,
  "ic_fluent_badge_24_filled": 61877,
  "ic_fluent_balloon_20_filled": 61878,
  "ic_fluent_balloon_24_filled": 61879,
  "ic_fluent_battery_0_20_filled": 61883,
  "ic_fluent_battery_0_24_filled": 61884,
  "ic_fluent_battery_1_20_filled": 61885,
  "ic_fluent_battery_1_24_filled": 61886,
  "ic_fluent_battery_2_20_filled": 61887,
  "ic_fluent_battery_2_24_filled": 61888,
  "ic_fluent_battery_3_20_filled": 61889,
  "ic_fluent_battery_3_24_filled": 61890,
  "ic_fluent_battery_4_20_filled": 61891,
  "ic_fluent_battery_4_24_filled": 61892,
  "ic_fluent_battery_5_20_filled": 61893,
  "ic_fluent_battery_5_24_filled": 61894,
  "ic_fluent_battery_6_20_filled": 61895,
  "ic_fluent_battery_6_24_filled": 61896,
  "ic_fluent_battery_7_20_filled": 61897,
  "ic_fluent_battery_7_24_filled": 61898,
  "ic_fluent_battery_8_20_filled": 61899,
  "ic_fluent_battery_8_24_filled": 61900,
  "ic_fluent_battery_9_20_filled": 61901,
  "ic_fluent_battery_9_24_filled": 61902,
  "ic_fluent_battery_charge_20_filled": 61903,
  "ic_fluent_battery_charge_24_filled": 61904,
  "ic_fluent_battery_saver_20_filled": 61907,
  "ic_fluent_battery_saver_24_filled": 61908,
  "ic_fluent_battery_warning_24_filled": 61909,
  "ic_fluent_beaker_16_filled": 61910,
  "ic_fluent_beaker_20_filled": 61911,
  "ic_fluent_beaker_24_filled": 61912,
  "ic_fluent_bed_20_filled": 61913,
  "ic_fluent_bed_24_filled": 61914,
  "ic_fluent_bluetooth_20_filled": 61918,
  "ic_fluent_bluetooth_24_filled": 61919,
  "ic_fluent_bluetooth_connected_24_filled": 61920,
  "ic_fluent_bluetooth_disabled_24_filled": 61921,
  "ic_fluent_bluetooth_searching_24_filled": 61922,
  "ic_fluent_board_24_filled": 61923,
  "ic_fluent_book_globe_24_filled": 61936,
  "ic_fluent_book_number_16_filled": 61937,
  "ic_fluent_book_number_20_filled": 61938,
  "ic_fluent_book_number_24_filled": 61939,
  "ic_fluent_bookmark_16_filled": 61940,
  "ic_fluent_bookmark_20_filled": 61941,
  "ic_fluent_bookmark_24_filled": 61942,
  "ic_fluent_bookmark_28_filled": 61943,
  "ic_fluent_bookmark_off_24_filled": 61944,
  "ic_fluent_bot_24_filled": 61945,
  "ic_fluent_bot_add_24_filled": 61946,
  "ic_fluent_branch_24_filled": 61947,
  "ic_fluent_briefcase_20_filled": 61948,
  "ic_fluent_briefcase_24_filled": 61949,
  "ic_fluent_broad_activity_feed_24_filled": 61952,
  "ic_fluent_broom_20_filled": 61953,
  "ic_fluent_broom_24_filled": 61954,
  "ic_fluent_building_24_filled": 61957,
  "ic_fluent_building_retail_24_filled": 61961,
  "ic_fluent_calculator_20_filled": 61962,
  "ic_fluent_calendar_3_day_20_filled": 61966,
  "ic_fluent_calendar_3_day_24_filled": 61967,
  "ic_fluent_calendar_3_day_28_filled": 61968,
  "ic_fluent_calendar_add_20_filled": 61969,
  "ic_fluent_calendar_add_24_filled": 61970,
  "ic_fluent_calendar_agenda_20_filled": 61971,
  "ic_fluent_calendar_agenda_24_filled": 61972,
  "ic_fluent_calendar_agenda_28_filled": 61973,
  "ic_fluent_calendar_arrow_right_20_filled": 61974,
  "ic_fluent_calendar_assistant_20_filled": 61975,
  "ic_fluent_calendar_assistant_24_filled": 61976,
  "ic_fluent_calendar_cancel_20_filled": 61977,
  "ic_fluent_calendar_cancel_24_filled": 61978,
  "ic_fluent_calendar_checkmark_16_filled": 61979,
  "ic_fluent_calendar_checkmark_20_filled": 61980,
  "ic_fluent_calendar_clock_20_filled": 61981,
  "ic_fluent_calendar_clock_24_filled": 61982,
  "ic_fluent_calendar_day_20_filled": 61986,
  "ic_fluent_calendar_day_24_filled": 61987,
  "ic_fluent_calendar_day_28_filled": 61988,
  "ic_fluent_calendar_empty_16_filled": 61989,
  "ic_fluent_calendar_empty_20_filled": 61990,
  "ic_fluent_calendar_empty_24_filled": 61991,
  "ic_fluent_calendar_empty_28_filled": 61992,
  "ic_fluent_calendar_month_20_filled": 61994,
  "ic_fluent_calendar_month_24_filled": 61995,
  "ic_fluent_calendar_month_28_filled": 61996,
  "ic_fluent_calendar_multiple_20_filled": 61997,
  "ic_fluent_calendar_multiple_24_filled": 61998,
  "ic_fluent_calendar_person_20_filled": 62000,
  "ic_fluent_calendar_reply_16_filled": 62001,
  "ic_fluent_calendar_reply_20_filled": 62002,
  "ic_fluent_calendar_reply_24_filled": 62003,
  "ic_fluent_calendar_reply_28_filled": 62004,
  "ic_fluent_calendar_settings_20_filled": 62005,
  "ic_fluent_calendar_star_20_filled": 62006,
  "ic_fluent_calendar_star_24_filled": 62007,
  "ic_fluent_calendar_sync_16_filled": 62008,
  "ic_fluent_calendar_sync_20_filled": 62009,
  "ic_fluent_calendar_sync_24_filled": 62010,
  "ic_fluent_calendar_today_16_filled": 62011,
  "ic_fluent_calendar_today_20_filled": 62012,
  "ic_fluent_calendar_today_24_filled": 62013,
  "ic_fluent_calendar_today_28_filled": 62014,
  "ic_fluent_calendar_week_numbers_24_filled": 62015,
  "ic_fluent_calendar_week_start_20_filled": 62016,
  "ic_fluent_calendar_week_start_24_filled": 62017,
  "ic_fluent_calendar_week_start_28_filled": 62018,
  "ic_fluent_calendar_work_week_16_filled": 62019,
  "ic_fluent_calendar_work_week_20_filled": 62020,
  "ic_fluent_calendar_work_week_24_filled": 62021,
  "ic_fluent_call_add_24_filled": 62022,
  "ic_fluent_call_end_20_filled": 62023,
  "ic_fluent_call_end_24_filled": 62024,
  "ic_fluent_call_end_28_filled": 62025,
  "ic_fluent_call_forward_24_filled": 62026,
  "ic_fluent_call_inbound_16_filled": 62027,
  "ic_fluent_call_inbound_24_filled": 62028,
  "ic_fluent_call_missed_16_filled": 62029,
  "ic_fluent_call_missed_24_filled": 62030,
  "ic_fluent_call_outbound_16_filled": 62031,
  "ic_fluent_call_outbound_24_filled": 62032,
  "ic_fluent_call_park_24_filled": 62033,
  "ic_fluent_calligraphy_pen_20_filled": 62034,
  "ic_fluent_calligraphy_pen_24_filled": 62035,
  "ic_fluent_camera_20_filled": 62036,
  "ic_fluent_camera_24_filled": 62037,
  "ic_fluent_camera_28_filled": 62038,
  "ic_fluent_camera_add_20_filled": 62039,
  "ic_fluent_camera_add_24_filled": 62040,
  "ic_fluent_camera_add_48_filled": 62041,
  "ic_fluent_camera_switch_24_filled": 62042,
  "ic_fluent_caret_down_12_filled": 62047,
  "ic_fluent_caret_down_16_filled": 62048,
  "ic_fluent_caret_down_20_filled": 62049,
  "ic_fluent_caret_down_24_filled": 62050,
  "ic_fluent_caret_left_12_filled": 62051,
  "ic_fluent_caret_left_16_filled": 62052,
  "ic_fluent_caret_left_20_filled": 62053,
  "ic_fluent_caret_left_24_filled": 62054,
  "ic_fluent_caret_right_12_filled": 62055,
  "ic_fluent_caret_right_16_filled": 62056,
  "ic_fluent_caret_right_20_filled": 62057,
  "ic_fluent_caret_right_24_filled": 62058,
  "ic_fluent_cart_24_filled": 62059,
  "ic_fluent_cast_20_filled": 62060,
  "ic_fluent_cast_24_filled": 62061,
  "ic_fluent_cast_28_filled": 62062,
  "ic_fluent_cellular_3g_24_filled": 62063,
  "ic_fluent_cellular_4g_24_filled": 62064,
  "ic_fluent_cellular_data_1_20_filled": 62065,
  "ic_fluent_cellular_data_1_24_filled": 62066,
  "ic_fluent_cellular_data_2_20_filled": 62067,
  "ic_fluent_cellular_data_2_24_filled": 62068,
  "ic_fluent_cellular_data_3_20_filled": 62069,
  "ic_fluent_cellular_data_3_24_filled": 62070,
  "ic_fluent_cellular_data_4_20_filled": 62071,
  "ic_fluent_cellular_data_4_24_filled": 62072,
  "ic_fluent_cellular_data_5_20_filled": 62073,
  "ic_fluent_cellular_data_5_24_filled": 62074,
  "ic_fluent_certificate_20_filled": 62078,
  "ic_fluent_certificate_24_filled": 62079,
  "ic_fluent_channel_16_filled": 62080,
  "ic_fluent_channel_20_filled": 62081,
  "ic_fluent_channel_24_filled": 62082,
  "ic_fluent_chat_20_filled": 62086,
  "ic_fluent_chat_24_filled": 62087,
  "ic_fluent_chat_28_filled": 62088,
  "ic_fluent_chat_bubbles_question_24_filled": 62089,
  "ic_fluent_chat_help_24_filled": 62090,
  "ic_fluent_chat_off_24_filled": 62091,
  "ic_fluent_chat_warning_24_filled": 62092,
  "ic_fluent_checkbox_checked_20_filled": 62093,
  "ic_fluent_checkbox_checked_24_filled": 62094,
  "ic_fluent_checkbox_unchecked_12_filled": 62095,
  "ic_fluent_checkbox_unchecked_16_filled": 62096,
  "ic_fluent_checkbox_unchecked_20_filled": 62097,
  "ic_fluent_checkbox_unchecked_24_filled": 62098,
  "ic_fluent_checkmark_12_filled": 62099,
  "ic_fluent_checkmark_20_filled": 62100,
  "ic_fluent_checkmark_24_filled": 62101,
  "ic_fluent_checkmark_28_filled": 62102,
  "ic_fluent_checkmark_circle_16_filled": 62103,
  "ic_fluent_checkmark_circle_20_filled": 62104,
  "ic_fluent_checkmark_circle_24_filled": 62105,
  "ic_fluent_checkmark_circle_48_filled": 62106,
  "ic_fluent_checkmark_lock_16_filled": 62107,
  "ic_fluent_checkmark_lock_20_filled": 62108,
  "ic_fluent_checkmark_lock_24_filled": 62109,
  "ic_fluent_checkmark_square_24_filled": 62110,
  "ic_fluent_checkmark_underline_circle_16_filled": 62111,
  "ic_fluent_checkmark_underline_circle_20_filled": 62112,
  "ic_fluent_chevron_down_12_filled": 62113,
  "ic_fluent_chevron_down_16_filled": 62114,
  "ic_fluent_chevron_down_20_filled": 62115,
  "ic_fluent_chevron_down_24_filled": 62116,
  "ic_fluent_chevron_down_28_filled": 62117,
  "ic_fluent_chevron_down_48_filled": 62118,
  "ic_fluent_chevron_left_12_filled": 62120,
  "ic_fluent_chevron_left_16_filled": 62121,
  "ic_fluent_chevron_left_20_filled": 62122,
  "ic_fluent_chevron_left_24_filled": 62123,
  "ic_fluent_chevron_left_28_filled": 62124,
  "ic_fluent_chevron_left_48_filled": 62125,
  "ic_fluent_chevron_right_12_filled": 62126,
  "ic_fluent_chevron_right_16_filled": 62127,
  "ic_fluent_chevron_right_20_filled": 62128,
  "ic_fluent_chevron_right_24_filled": 62129,
  "ic_fluent_chevron_right_28_filled": 62130,
  "ic_fluent_chevron_right_48_filled": 62131,
  "ic_fluent_chevron_up_12_filled": 62132,
  "ic_fluent_chevron_up_16_filled": 62133,
  "ic_fluent_chevron_up_20_filled": 62134,
  "ic_fluent_chevron_up_24_filled": 62135,
  "ic_fluent_chevron_up_28_filled": 62136,
  "ic_fluent_chevron_up_48_filled": 62137,
  "ic_fluent_circle_16_filled": 62138,
  "ic_fluent_circle_20_filled": 62139,
  "ic_fluent_circle_24_filled": 62140,
  "ic_fluent_circle_half_fill_20_filled": 62141,
  "ic_fluent_circle_half_fill_24_filled": 62142,
  "ic_fluent_circle_line_24_filled": 62143,
  "ic_fluent_circle_small_24_filled": 62144,
  "ic_fluent_city_16_filled": 62145,
  "ic_fluent_city_20_filled": 62146,
  "ic_fluent_city_24_filled": 62147,
  "ic_fluent_class_24_filled": 62148,
  "ic_fluent_classification_16_filled": 62149,
  "ic_fluent_classification_20_filled": 62150,
  "ic_fluent_classification_24_filled": 62151,
  "ic_fluent_clear_formatting_24_filled": 62152,
  "ic_fluent_clipboard_20_filled": 62153,
  "ic_fluent_clipboard_24_filled": 62154,
  "ic_fluent_clipboard_code_16_filled": 62155,
  "ic_fluent_clipboard_code_20_filled": 62156,
  "ic_fluent_clipboard_code_24_filled": 62157,
  "ic_fluent_clipboard_letter_16_filled": 62158,
  "ic_fluent_clipboard_letter_20_filled": 62159,
  "ic_fluent_clipboard_letter_24_filled": 62160,
  "ic_fluent_clipboard_link_16_filled": 62161,
  "ic_fluent_clipboard_link_20_filled": 62162,
  "ic_fluent_clipboard_link_24_filled": 62163,
  "ic_fluent_clipboard_more_24_filled": 62164,
  "ic_fluent_clipboard_paste_20_filled": 62165,
  "ic_fluent_clipboard_paste_24_filled": 62166,
  "ic_fluent_clipboard_search_20_filled": 62167,
  "ic_fluent_clipboard_search_24_filled": 62168,
  "ic_fluent_clock_12_filled": 62171,
  "ic_fluent_clock_16_filled": 62172,
  "ic_fluent_clock_20_filled": 62173,
  "ic_fluent_clock_24_filled": 62174,
  "ic_fluent_clock_28_filled": 62175,
  "ic_fluent_clock_48_filled": 62176,
  "ic_fluent_clock_alarm_20_filled": 62177,
  "ic_fluent_clock_alarm_24_filled": 62178,
  "ic_fluent_closed_caption_24_filled": 62179,
  "ic_fluent_cloud_20_filled": 62180,
  "ic_fluent_cloud_24_filled": 62181,
  "ic_fluent_cloud_48_filled": 62182,
  "ic_fluent_cloud_off_24_filled": 62186,
  "ic_fluent_cloud_off_48_filled": 62187,
  "ic_fluent_code_20_filled": 62191,
  "ic_fluent_code_24_filled": 62192,
  "ic_fluent_collections_20_filled": 62193,
  "ic_fluent_collections_24_filled": 62194,
  "ic_fluent_collections_add_20_filled": 62195,
  "ic_fluent_collections_add_24_filled": 62196,
  "ic_fluent_color_20_filled": 62197,
  "ic_fluent_color_24_filled": 62198,
  "ic_fluent_color_background_20_filled": 62199,
  "ic_fluent_color_background_24_filled": 62200,
  "ic_fluent_color_fill_20_filled": 62201,
  "ic_fluent_color_fill_24_filled": 62202,
  "ic_fluent_color_line_20_filled": 62203,
  "ic_fluent_color_line_24_filled": 62204,
  "ic_fluent_column_triple_24_filled": 62205,
  "ic_fluent_comment_16_filled": 62206,
  "ic_fluent_comment_20_filled": 62207,
  "ic_fluent_comment_24_filled": 62208,
  "ic_fluent_comment_add_24_filled": 62209,
  "ic_fluent_comment_mention_16_filled": 62211,
  "ic_fluent_comment_mention_20_filled": 62212,
  "ic_fluent_comment_mention_24_filled": 62213,
  "ic_fluent_comment_multiple_16_filled": 62214,
  "ic_fluent_comment_multiple_20_filled": 62215,
  "ic_fluent_comment_multiple_24_filled": 62216,
  "ic_fluent_communication_16_filled": 62220,
  "ic_fluent_communication_20_filled": 62221,
  "ic_fluent_communication_24_filled": 62222,
  "ic_fluent_compass_northwest_16_filled": 62223,
  "ic_fluent_compass_northwest_20_filled": 62224,
  "ic_fluent_compass_northwest_24_filled": 62225,
  "ic_fluent_compass_northwest_28_filled": 62226,
  "ic_fluent_compose_16_filled": 62227,
  "ic_fluent_compose_20_filled": 62228,
  "ic_fluent_compose_24_filled": 62229,
  "ic_fluent_compose_28_filled": 62230,
  "ic_fluent_conference_room_16_filled": 62231,
  "ic_fluent_conference_room_20_filled": 62232,
  "ic_fluent_conference_room_24_filled": 62233,
  "ic_fluent_conference_room_28_filled": 62234,
  "ic_fluent_conference_room_48_filled": 62235,
  "ic_fluent_connector_16_filled": 62236,
  "ic_fluent_connector_20_filled": 62237,
  "ic_fluent_connector_24_filled": 62238,
  "ic_fluent_contact_card_20_filled": 62239,
  "ic_fluent_contact_card_24_filled": 62240,
  "ic_fluent_contact_card_group_24_filled": 62241,
  "ic_fluent_content_settings_16_filled": 62243,
  "ic_fluent_content_settings_20_filled": 62244,
  "ic_fluent_content_settings_24_filled": 62245,
  "ic_fluent_cookies_20_filled": 62248,
  "ic_fluent_cookies_24_filled": 62249,
  "ic_fluent_copy_16_filled": 62250,
  "ic_fluent_copy_20_filled": 62251,
  "ic_fluent_copy_24_filled": 62252,
  "ic_fluent_crop_24_filled": 62257,
  "ic_fluent_crop_interim_24_filled": 62258,
  "ic_fluent_crop_interim_off_24_filled": 62259,
  "ic_fluent_cube_16_filled": 62260,
  "ic_fluent_cube_20_filled": 62261,
  "ic_fluent_cube_24_filled": 62262,
  "ic_fluent_cut_20_filled": 62266,
  "ic_fluent_cut_24_filled": 62267,
  "ic_fluent_dark_theme_24_filled": 62268,
  "ic_fluent_data_area_24_filled": 62269,
  "ic_fluent_data_bar_horizontal_24_filled": 62270,
  "ic_fluent_data_bar_vertical_20_filled": 62271,
  "ic_fluent_data_bar_vertical_24_filled": 62272,
  "ic_fluent_data_funnel_24_filled": 62273,
  "ic_fluent_data_histogram_24_filled": 62274,
  "ic_fluent_data_line_24_filled": 62275,
  "ic_fluent_data_pie_20_filled": 62276,
  "ic_fluent_data_pie_24_filled": 62277,
  "ic_fluent_data_scatter_24_filled": 62278,
  "ic_fluent_data_sunburst_24_filled": 62279,
  "ic_fluent_data_treemap_24_filled": 62280,
  "ic_fluent_data_usage_24_filled": 62281,
  "ic_fluent_data_waterfall_24_filled": 62282,
  "ic_fluent_data_whisker_24_filled": 62283,
  "ic_fluent_delete_20_filled": 62284,
  "ic_fluent_delete_24_filled": 62285,
  "ic_fluent_delete_28_filled": 62286,
  "ic_fluent_delete_48_filled": 62287,
  "ic_fluent_delete_off_20_filled": 62290,
  "ic_fluent_delete_off_24_filled": 62291,
  "ic_fluent_dentist_24_filled": 62292,
  "ic_fluent_design_ideas_16_filled": 62293,
  "ic_fluent_design_ideas_20_filled": 62294,
  "ic_fluent_design_ideas_24_filled": 62295,
  "ic_fluent_desktop_16_filled": 62296,
  "ic_fluent_desktop_20_filled": 62297,
  "ic_fluent_desktop_24_filled": 62298,
  "ic_fluent_desktop_28_filled": 62299,
  "ic_fluent_developer_board_24_filled": 62300,
  "ic_fluent_device_eq_24_filled": 62301,
  "ic_fluent_dialpad_20_filled": 62302,
  "ic_fluent_dialpad_24_filled": 62303,
  "ic_fluent_dialpad_off_24_filled": 62304,
  "ic_fluent_directions_20_filled": 62309,
  "ic_fluent_directions_24_filled": 62310,
  "ic_fluent_dismiss_12_filled": 62311,
  "ic_fluent_dismiss_16_filled": 62312,
  "ic_fluent_dismiss_20_filled": 62313,
  "ic_fluent_dismiss_24_filled": 62314,
  "ic_fluent_dismiss_28_filled": 62315,
  "ic_fluent_dismiss_circle_16_filled": 62316,
  "ic_fluent_dismiss_circle_20_filled": 62317,
  "ic_fluent_dismiss_circle_24_filled": 62318,
  "ic_fluent_dismiss_circle_48_filled": 62319,
  "ic_fluent_divider_short_24_filled": 62320,
  "ic_fluent_divider_tall_24_filled": 62321,
  "ic_fluent_dock_24_filled": 62322,
  "ic_fluent_dock_row_24_filled": 62326,
  "ic_fluent_doctor_24_filled": 62327,
  "ic_fluent_document_20_filled": 62328,
  "ic_fluent_document_24_filled": 62329,
  "ic_fluent_document_28_filled": 62330,
  "ic_fluent_document_briefcase_20_filled": 62332,
  "ic_fluent_document_briefcase_24_filled": 62333,
  "ic_fluent_document_catch_up_24_filled": 62334,
  "ic_fluent_document_copy_16_filled": 62335,
  "ic_fluent_document_copy_20_filled": 62336,
  "ic_fluent_document_copy_24_filled": 62337,
  "ic_fluent_document_copy_48_filled": 62338,
  "ic_fluent_document_dismiss_20_filled": 62339,
  "ic_fluent_document_dismiss_24_filled": 62340,
  "ic_fluent_document_edit_16_filled": 62341,
  "ic_fluent_document_edit_20_filled": 62342,
  "ic_fluent_document_edit_24_filled": 62343,
  "ic_fluent_document_endnote_20_filled": 62344,
  "ic_fluent_document_endnote_24_filled": 62345,
  "ic_fluent_document_error_16_filled": 62346,
  "ic_fluent_document_error_20_filled": 62347,
  "ic_fluent_document_error_24_filled": 62348,
  "ic_fluent_document_footer_24_filled": 62349,
  "ic_fluent_document_header_24_filled": 62351,
  "ic_fluent_document_header_footer_20_filled": 62352,
  "ic_fluent_document_header_footer_24_filled": 62353,
  "ic_fluent_document_landscape_20_filled": 62355,
  "ic_fluent_document_landscape_24_filled": 62356,
  "ic_fluent_document_margins_20_filled": 62357,
  "ic_fluent_document_margins_24_filled": 62358,
  "ic_fluent_document_one_page_20_filled": 62361,
  "ic_fluent_document_one_page_24_filled": 62362,
  "ic_fluent_document_page_bottom_center_20_filled": 62364,
  "ic_fluent_document_page_bottom_center_24_filled": 62365,
  "ic_fluent_document_page_bottom_left_20_filled": 62366,
  "ic_fluent_document_page_bottom_left_24_filled": 62367,
  "ic_fluent_document_page_bottom_right_20_filled": 62368,
  "ic_fluent_document_page_bottom_right_24_filled": 62369,
  "ic_fluent_document_page_break_24_filled": 62370,
  "ic_fluent_document_page_number_20_filled": 62371,
  "ic_fluent_document_page_number_24_filled": 62372,
  "ic_fluent_document_page_top_center_20_filled": 62373,
  "ic_fluent_document_page_top_center_24_filled": 62374,
  "ic_fluent_document_page_top_left_20_filled": 62375,
  "ic_fluent_document_page_top_left_24_filled": 62376,
  "ic_fluent_document_page_top_right_20_filled": 62377,
  "ic_fluent_document_page_top_right_24_filled": 62378,
  "ic_fluent_document_pdf_16_filled": 62379,
  "ic_fluent_document_pdf_20_filled": 62380,
  "ic_fluent_document_pdf_24_filled": 62381,
  "ic_fluent_document_search_20_filled": 62382,
  "ic_fluent_document_search_24_filled": 62383,
  "ic_fluent_document_toolbox_20_filled": 62384,
  "ic_fluent_document_toolbox_24_filled": 62385,
  "ic_fluent_document_width_20_filled": 62392,
  "ic_fluent_document_width_24_filled": 62393,
  "ic_fluent_double_swipe_down_24_filled": 62394,
  "ic_fluent_double_swipe_up_24_filled": 62395,
  "ic_fluent_drafts_16_filled": 62398,
  "ic_fluent_drafts_20_filled": 62399,
  "ic_fluent_drafts_24_filled": 62400,
  "ic_fluent_drag_24_filled": 62401,
  "ic_fluent_drink_beer_24_filled": 62403,
  "ic_fluent_drink_coffee_20_filled": 62404,
  "ic_fluent_drink_coffee_24_filled": 62405,
  "ic_fluent_drink_margarita_24_filled": 62406,
  "ic_fluent_drink_wine_24_filled": 62407,
  "ic_fluent_dual_screen_24_filled": 62408,
  "ic_fluent_dual_screen_add_24_filled": 62409,
  "ic_fluent_dual_screen_arrow_right_24_filled": 62410,
  "ic_fluent_dual_screen_clock_24_filled": 62411,
  "ic_fluent_dual_screen_desktop_24_filled": 62412,
  "ic_fluent_dual_screen_group_24_filled": 62414,
  "ic_fluent_dual_screen_lock_24_filled": 62415,
  "ic_fluent_dual_screen_mirror_24_filled": 62416,
  "ic_fluent_dual_screen_pagination_24_filled": 62417,
  "ic_fluent_dual_screen_settings_24_filled": 62418,
  "ic_fluent_dual_screen_status_bar_24_filled": 62419,
  "ic_fluent_dual_screen_tablet_24_filled": 62420,
  "ic_fluent_dual_screen_update_24_filled": 62421,
  "ic_fluent_dual_screen_vertical_scroll_24_filled": 62422,
  "ic_fluent_dual_screen_vibrate_24_filled": 62423,
  "ic_fluent_earth_16_filled": 62424,
  "ic_fluent_earth_20_filled": 62425,
  "ic_fluent_earth_24_filled": 62426,
  "ic_fluent_edit_16_filled": 62427,
  "ic_fluent_edit_20_filled": 62428,
  "ic_fluent_edit_24_filled": 62429,
  "ic_fluent_emoji_16_filled": 62430,
  "ic_fluent_emoji_20_filled": 62431,
  "ic_fluent_emoji_24_filled": 62432,
  "ic_fluent_emoji_add_24_filled": 62433,
  "ic_fluent_emoji_angry_20_filled": 62434,
  "ic_fluent_emoji_angry_24_filled": 62435,
  "ic_fluent_emoji_laugh_20_filled": 62436,
  "ic_fluent_emoji_laugh_24_filled": 62437,
  "ic_fluent_emoji_meh_20_filled": 62438,
  "ic_fluent_emoji_meh_24_filled": 62439,
  "ic_fluent_emoji_sad_20_filled": 62440,
  "ic_fluent_emoji_sad_24_filled": 62441,
  "ic_fluent_emoji_surprise_20_filled": 62442,
  "ic_fluent_emoji_surprise_24_filled": 62443,
  "ic_fluent_eraser_tool_24_filled": 62446,
  "ic_fluent_error_circle_16_filled": 62447,
  "ic_fluent_error_circle_20_filled": 62448,
  "ic_fluent_error_circle_24_filled": 62449,
  "ic_fluent_extended_dock_24_filled": 62451,
  "ic_fluent_fast_acceleration_24_filled": 62460,
  "ic_fluent_fast_forward_20_filled": 62461,
  "ic_fluent_fast_forward_24_filled": 62462,
  "ic_fluent_filter_20_filled": 62469,
  "ic_fluent_filter_24_filled": 62470,
  "ic_fluent_filter_28_filled": 62471,
  "ic_fluent_fingerprint_24_filled": 62472,
  "ic_fluent_flag_16_filled": 62473,
  "ic_fluent_flag_20_filled": 62474,
  "ic_fluent_flag_24_filled": 62475,
  "ic_fluent_flag_28_filled": 62476,
  "ic_fluent_flag_48_filled": 62477,
  "ic_fluent_flag_off_24_filled": 62478,
  "ic_fluent_flag_off_28_filled": 62479,
  "ic_fluent_flag_off_48_filled": 62480,
  "ic_fluent_flag_pride_16_filled": 62481,
  "ic_fluent_flag_pride_20_filled": 62482,
  "ic_fluent_flag_pride_24_filled": 62483,
  "ic_fluent_flag_pride_28_filled": 62484,
  "ic_fluent_flag_pride_48_filled": 62485,
  "ic_fluent_flash_auto_24_filled": 62486,
  "ic_fluent_flash_off_24_filled": 62487,
  "ic_fluent_flashlight_24_filled": 62490,
  "ic_fluent_flashlight_off_24_filled": 62491,
  "ic_fluent_folder_20_filled": 62492,
  "ic_fluent_folder_24_filled": 62493,
  "ic_fluent_folder_28_filled": 62494,
  "ic_fluent_folder_48_filled": 62495,
  "ic_fluent_folder_add_20_filled": 62496,
  "ic_fluent_folder_add_24_filled": 62497,
  "ic_fluent_folder_add_28_filled": 62498,
  "ic_fluent_folder_add_48_filled": 62499,
  "ic_fluent_folder_briefcase_20_filled": 62500,
  "ic_fluent_folder_link_20_filled": 62505,
  "ic_fluent_folder_link_24_filled": 62506,
  "ic_fluent_folder_link_28_filled": 62507,
  "ic_fluent_folder_link_48_filled": 62508,
  "ic_fluent_folder_open_16_filled": 62513,
  "ic_fluent_folder_open_20_filled": 62514,
  "ic_fluent_folder_open_24_filled": 62515,
  "ic_fluent_folder_open_vertical_20_filled": 62516,
  "ic_fluent_folder_zip_16_filled": 62520,
  "ic_fluent_folder_zip_20_filled": 62521,
  "ic_fluent_folder_zip_24_filled": 62522,
  "ic_fluent_font_decrease_20_filled": 62523,
  "ic_fluent_font_decrease_24_filled": 62524,
  "ic_fluent_font_increase_20_filled": 62525,
  "ic_fluent_font_increase_24_filled": 62526,
  "ic_fluent_font_space_tracking_in_16_filled": 62527,
  "ic_fluent_font_space_tracking_in_20_filled": 62528,
  "ic_fluent_font_space_tracking_in_24_filled": 62529,
  "ic_fluent_font_space_tracking_in_28_filled": 62530,
  "ic_fluent_font_space_tracking_out_16_filled": 62531,
  "ic_fluent_font_space_tracking_out_20_filled": 62532,
  "ic_fluent_font_space_tracking_out_24_filled": 62533,
  "ic_fluent_font_space_tracking_out_28_filled": 62534,
  "ic_fluent_food_20_filled": 62535,
  "ic_fluent_food_24_filled": 62536,
  "ic_fluent_food_cake_24_filled": 62537,
  "ic_fluent_food_egg_24_filled": 62538,
  "ic_fluent_food_toast_24_filled": 62539,
  "ic_fluent_form_new_24_filled": 62540,
  "ic_fluent_form_new_28_filled": 62541,
  "ic_fluent_form_new_48_filled": 62542,
  "ic_fluent_fps_240_24_filled": 62545,
  "ic_fluent_fps_960_24_filled": 62546,
  "ic_fluent_games_24_filled": 62549,
  "ic_fluent_gesture_24_filled": 62550,
  "ic_fluent_gif_20_filled": 62551,
  "ic_fluent_gif_24_filled": 62552,
  "ic_fluent_gift_20_filled": 62553,
  "ic_fluent_gift_24_filled": 62554,
  "ic_fluent_glance_24_filled": 62555,
  "ic_fluent_glasses_24_filled": 62556,
  "ic_fluent_glasses_off_24_filled": 62557,
  "ic_fluent_globe_20_filled": 62558,
  "ic_fluent_globe_24_filled": 62559,
  "ic_fluent_globe_add_24_filled": 62560,
  "ic_fluent_globe_clock_24_filled": 62561,
  "ic_fluent_globe_desktop_24_filled": 62562,
  "ic_fluent_globe_location_24_filled": 62563,
  "ic_fluent_globe_search_24_filled": 62564,
  "ic_fluent_globe_video_24_filled": 62565,
  "ic_fluent_grid_20_filled": 62566,
  "ic_fluent_grid_24_filled": 62567,
  "ic_fluent_grid_28_filled": 62568,
  "ic_fluent_group_20_filled": 62569,
  "ic_fluent_group_24_filled": 62570,
  "ic_fluent_group_list_24_filled": 62571,
  "ic_fluent_guest_16_filled": 62572,
  "ic_fluent_guest_20_filled": 62573,
  "ic_fluent_guest_24_filled": 62574,
  "ic_fluent_guest_28_filled": 62575,
  "ic_fluent_guest_add_24_filled": 62576,
  "ic_fluent_handshake_16_filled": 62578,
  "ic_fluent_handshake_20_filled": 62579,
  "ic_fluent_handshake_24_filled": 62580,
  "ic_fluent_hdr_24_filled": 62581,
  "ic_fluent_headphones_24_filled": 62582,
  "ic_fluent_headphones_28_filled": 62583,
  "ic_fluent_headset_24_filled": 62584,
  "ic_fluent_headset_28_filled": 62585,
  "ic_fluent_headset_vr_20_filled": 62586,
  "ic_fluent_headset_vr_24_filled": 62587,
  "ic_fluent_heart_16_filled": 62588,
  "ic_fluent_heart_20_filled": 62589,
  "ic_fluent_heart_24_filled": 62590,
  "ic_fluent_highlight_16_filled": 62591,
  "ic_fluent_highlight_20_filled": 62592,
  "ic_fluent_highlight_24_filled": 62593,
  "ic_fluent_highlight_accent_16_filled": 62594,
  "ic_fluent_highlight_accent_20_filled": 62595,
  "ic_fluent_highlight_accent_24_filled": 62596,
  "ic_fluent_history_20_filled": 62597,
  "ic_fluent_history_24_filled": 62598,
  "ic_fluent_home_20_filled": 62599,
  "ic_fluent_home_24_filled": 62600,
  "ic_fluent_home_28_filled": 62601,
  "ic_fluent_home_add_24_filled": 62602,
  "ic_fluent_home_checkmark_24_filled": 62603,
  "ic_fluent_icons_20_filled": 62604,
  "ic_fluent_icons_24_filled": 62605,
  "ic_fluent_image_16_filled": 62606,
  "ic_fluent_image_20_filled": 62607,
  "ic_fluent_image_24_filled": 62608,
  "ic_fluent_image_28_filled": 62609,
  "ic_fluent_image_48_filled": 62610,
  "ic_fluent_image_add_24_filled": 62611,
  "ic_fluent_image_alt_text_20_filled": 62612,
  "ic_fluent_image_alt_text_24_filled": 62613,
  "ic_fluent_image_copy_20_filled": 62614,
  "ic_fluent_image_copy_24_filled": 62615,
  "ic_fluent_image_copy_28_filled": 62616,
  "ic_fluent_image_edit_16_filled": 62617,
  "ic_fluent_image_edit_20_filled": 62618,
  "ic_fluent_image_edit_24_filled": 62619,
  "ic_fluent_image_off_24_filled": 62623,
  "ic_fluent_image_search_20_filled": 62624,
  "ic_fluent_image_search_24_filled": 62625,
  "ic_fluent_immersive_reader_20_filled": 62626,
  "ic_fluent_immersive_reader_24_filled": 62627,
  "ic_fluent_important_12_filled": 62628,
  "ic_fluent_important_16_filled": 62629,
  "ic_fluent_important_20_filled": 62630,
  "ic_fluent_important_24_filled": 62631,
  "ic_fluent_incognito_24_filled": 62632,
  "ic_fluent_info_16_filled": 62633,
  "ic_fluent_info_20_filled": 62634,
  "ic_fluent_info_24_filled": 62635,
  "ic_fluent_info_28_filled": 62636,
  "ic_fluent_inking_tool_16_filled": 62637,
  "ic_fluent_inking_tool_20_filled": 62638,
  "ic_fluent_inking_tool_24_filled": 62639,
  "ic_fluent_inking_tool_accent_16_filled": 62640,
  "ic_fluent_inking_tool_accent_20_filled": 62641,
  "ic_fluent_inking_tool_accent_24_filled": 62642,
  "ic_fluent_inprivate_account_16_filled": 62643,
  "ic_fluent_inprivate_account_20_filled": 62644,
  "ic_fluent_inprivate_account_24_filled": 62645,
  "ic_fluent_inprivate_account_28_filled": 62646,
  "ic_fluent_insert_20_filled": 62647,
  "ic_fluent_ios_chevron_right_20_filled": 62652,
  "ic_fluent_javascript_16_filled": 62653,
  "ic_fluent_javascript_20_filled": 62654,
  "ic_fluent_javascript_24_filled": 62655,
  "ic_fluent_key_20_filled": 62656,
  "ic_fluent_key_24_filled": 62657,
  "ic_fluent_keyboard_20_filled": 62658,
  "ic_fluent_keyboard_24_filled": 62659,
  "ic_fluent_keyboard_dock_24_filled": 62660,
  "ic_fluent_keyboard_layout_float_24_filled": 62661,
  "ic_fluent_keyboard_layout_one_handed_left_24_filled": 62662,
  "ic_fluent_keyboard_layout_resize_24_filled": 62663,
  "ic_fluent_keyboard_layout_split_24_filled": 62664,
  "ic_fluent_keyboard_shift_24_filled": 62665,
  "ic_fluent_keyboard_shift_uppercase_24_filled": 62666,
  "ic_fluent_keyboard_tab_24_filled": 62667,
  "ic_fluent_laptop_16_filled": 62668,
  "ic_fluent_laptop_20_filled": 62669,
  "ic_fluent_laptop_24_filled": 62670,
  "ic_fluent_laptop_28_filled": 62671,
  "ic_fluent_lasso_24_filled": 62675,
  "ic_fluent_launcher_settings_24_filled": 62676,
  "ic_fluent_layer_20_filled": 62677,
  "ic_fluent_layer_24_filled": 62678,
  "ic_fluent_leaf_two_16_filled": 62682,
  "ic_fluent_leaf_two_20_filled": 62683,
  "ic_fluent_leaf_two_24_filled": 62684,
  "ic_fluent_library_24_filled": 62685,
  "ic_fluent_library_28_filled": 62686,
  "ic_fluent_lightbulb_16_filled": 62687,
  "ic_fluent_lightbulb_20_filled": 62688,
  "ic_fluent_lightbulb_24_filled": 62689,
  "ic_fluent_lightbulb_circle_24_filled": 62690,
  "ic_fluent_lightbulb_filament_16_filled": 62691,
  "ic_fluent_lightbulb_filament_20_filled": 62692,
  "ic_fluent_lightbulb_filament_24_filled": 62693,
  "ic_fluent_likert_16_filled": 62695,
  "ic_fluent_likert_20_filled": 62696,
  "ic_fluent_likert_24_filled": 62697,
  "ic_fluent_line_horizontal_1_20_filled": 62698,
  "ic_fluent_line_horizontal_3_20_filled": 62699,
  "ic_fluent_line_horizontal_5_20_filled": 62700,
  "ic_fluent_link_16_filled": 62701,
  "ic_fluent_link_20_filled": 62702,
  "ic_fluent_link_24_filled": 62703,
  "ic_fluent_link_28_filled": 62704,
  "ic_fluent_link_48_filled": 62705,
  "ic_fluent_link_edit_16_filled": 62706,
  "ic_fluent_link_edit_20_filled": 62707,
  "ic_fluent_link_edit_24_filled": 62708,
  "ic_fluent_link_square_24_filled": 62710,
  "ic_fluent_list_20_filled": 62711,
  "ic_fluent_list_24_filled": 62712,
  "ic_fluent_list_28_filled": 62713,
  "ic_fluent_live_20_filled": 62714,
  "ic_fluent_live_24_filled": 62715,
  "ic_fluent_local_language_16_filled": 62716,
  "ic_fluent_local_language_20_filled": 62717,
  "ic_fluent_local_language_24_filled": 62718,
  "ic_fluent_local_language_28_filled": 62719,
  "ic_fluent_location_12_filled": 62720,
  "ic_fluent_location_16_filled": 62721,
  "ic_fluent_location_20_filled": 62722,
  "ic_fluent_location_24_filled": 62723,
  "ic_fluent_location_28_filled": 62724,
  "ic_fluent_location_live_20_filled": 62725,
  "ic_fluent_location_live_24_filled": 62726,
  "ic_fluent_lock_shield_20_filled": 62732,
  "ic_fluent_lock_shield_24_filled": 62733,
  "ic_fluent_lock_shield_48_filled": 62734,
  "ic_fluent_mail_20_filled": 62736,
  "ic_fluent_mail_24_filled": 62737,
  "ic_fluent_mail_28_filled": 62738,
  "ic_fluent_mail_48_filled": 62739,
  "ic_fluent_mail_add_24_filled": 62740,
  "ic_fluent_mail_all_read_20_filled": 62744,
  "ic_fluent_mail_all_unread_20_filled": 62745,
  "ic_fluent_mail_clock_20_filled": 62746,
  "ic_fluent_mail_copy_20_filled": 62747,
  "ic_fluent_mail_copy_24_filled": 62748,
  "ic_fluent_mail_inbox_16_filled": 62749,
  "ic_fluent_mail_inbox_20_filled": 62750,
  "ic_fluent_mail_inbox_24_filled": 62751,
  "ic_fluent_mail_inbox_28_filled": 62752,
  "ic_fluent_mail_inbox_add_16_filled": 62753,
  "ic_fluent_mail_inbox_add_20_filled": 62754,
  "ic_fluent_mail_inbox_add_24_filled": 62755,
  "ic_fluent_mail_inbox_add_28_filled": 62756,
  "ic_fluent_mail_inbox_dismiss_16_filled": 62757,
  "ic_fluent_mail_inbox_dismiss_20_filled": 62758,
  "ic_fluent_mail_inbox_dismiss_24_filled": 62759,
  "ic_fluent_mail_inbox_dismiss_28_filled": 62760,
  "ic_fluent_mail_read_20_filled": 62763,
  "ic_fluent_mail_read_24_filled": 62764,
  "ic_fluent_mail_read_28_filled": 62765,
  "ic_fluent_mail_read_48_filled": 62766,
  "ic_fluent_mail_unread_16_filled": 62767,
  "ic_fluent_mail_unread_20_filled": 62768,
  "ic_fluent_mail_unread_24_filled": 62769,
  "ic_fluent_mail_unread_28_filled": 62770,
  "ic_fluent_mail_unread_48_filled": 62771,
  "ic_fluent_map_24_filled": 62776,
  "ic_fluent_map_drive_16_filled": 62777,
  "ic_fluent_map_drive_20_filled": 62778,
  "ic_fluent_map_drive_24_filled": 62779,
  "ic_fluent_match_app_layout_24_filled": 62780,
  "ic_fluent_maximize_16_filled": 62781,
  "ic_fluent_meet_now_20_filled": 62782,
  "ic_fluent_meet_now_24_filled": 62783,
  "ic_fluent_megaphone_16_filled": 62784,
  "ic_fluent_megaphone_20_filled": 62785,
  "ic_fluent_megaphone_24_filled": 62786,
  "ic_fluent_megaphone_28_filled": 62787,
  "ic_fluent_megaphone_off_24_filled": 62788,
  "ic_fluent_mention_16_filled": 62789,
  "ic_fluent_mention_20_filled": 62790,
  "ic_fluent_mention_24_filled": 62791,
  "ic_fluent_merge_24_filled": 62792,
  "ic_fluent_mic_off_12_filled": 62793,
  "ic_fluent_mic_off_16_filled": 62794,
  "ic_fluent_mic_off_24_filled": 62795,
  "ic_fluent_mic_off_28_filled": 62796,
  "ic_fluent_mic_settings_24_filled": 62802,
  "ic_fluent_midi_20_filled": 62803,
  "ic_fluent_midi_24_filled": 62804,
  "ic_fluent_mobile_optimized_24_filled": 62807,
  "ic_fluent_money_16_filled": 62808,
  "ic_fluent_money_20_filled": 62809,
  "ic_fluent_money_24_filled": 62810,
  "ic_fluent_more_vertical_20_filled": 62816,
  "ic_fluent_more_vertical_24_filled": 62817,
  "ic_fluent_more_vertical_28_filled": 62818,
  "ic_fluent_more_vertical_48_filled": 62819,
  "ic_fluent_movies_and_tv_24_filled": 62820,
  "ic_fluent_my_location_24_filled": 62825,
  "ic_fluent_navigation_20_filled": 62826,
  "ic_fluent_navigation_24_filled": 62827,
  "ic_fluent_network_check_24_filled": 62828,
  "ic_fluent_new_16_filled": 62829,
  "ic_fluent_new_24_filled": 62830,
  "ic_fluent_news_20_filled": 62831,
  "ic_fluent_news_24_filled": 62832,
  "ic_fluent_news_28_filled": 62833,
  "ic_fluent_next_16_filled": 62834,
  "ic_fluent_next_20_filled": 62835,
  "ic_fluent_next_24_filled": 62836,
  "ic_fluent_note_20_filled": 62837,
  "ic_fluent_note_24_filled": 62838,
  "ic_fluent_note_add_16_filled": 62839,
  "ic_fluent_note_add_20_filled": 62840,
  "ic_fluent_note_add_24_filled": 62841,
  "ic_fluent_notebook_24_filled": 62842,
  "ic_fluent_notebook_error_24_filled": 62843,
  "ic_fluent_notebook_lightning_24_filled": 62844,
  "ic_fluent_notebook_question_mark_24_filled": 62845,
  "ic_fluent_notebook_section_24_filled": 62846,
  "ic_fluent_notebook_sync_24_filled": 62847,
  "ic_fluent_notepad_20_filled": 62848,
  "ic_fluent_notepad_24_filled": 62849,
  "ic_fluent_notepad_28_filled": 62850,
  "ic_fluent_number_row_16_filled": 62851,
  "ic_fluent_number_row_20_filled": 62852,
  "ic_fluent_number_row_24_filled": 62853,
  "ic_fluent_number_symbol_16_filled": 62854,
  "ic_fluent_number_symbol_20_filled": 62855,
  "ic_fluent_number_symbol_24_filled": 62856,
  "ic_fluent_open_16_filled": 62859,
  "ic_fluent_open_20_filled": 62860,
  "ic_fluent_open_24_filled": 62861,
  "ic_fluent_open_folder_24_filled": 62862,
  "ic_fluent_options_16_filled": 62864,
  "ic_fluent_options_20_filled": 62865,
  "ic_fluent_options_24_filled": 62866,
  "ic_fluent_organization_20_filled": 62867,
  "ic_fluent_organization_24_filled": 62868,
  "ic_fluent_organization_28_filled": 62869,
  "ic_fluent_page_fit_16_filled": 62872,
  "ic_fluent_page_fit_20_filled": 62873,
  "ic_fluent_page_fit_24_filled": 62874,
  "ic_fluent_paint_brush_16_filled": 62875,
  "ic_fluent_paint_brush_20_filled": 62876,
  "ic_fluent_paint_brush_24_filled": 62877,
  "ic_fluent_paint_bucket_16_filled": 62878,
  "ic_fluent_paint_bucket_20_filled": 62879,
  "ic_fluent_paint_bucket_24_filled": 62880,
  "ic_fluent_pair_24_filled": 62881,
  "ic_fluent_password_24_filled": 62888,
  "ic_fluent_patient_24_filled": 62889,
  "ic_fluent_pause_16_filled": 62890,
  "ic_fluent_pause_20_filled": 62891,
  "ic_fluent_pause_24_filled": 62892,
  "ic_fluent_pause_48_filled": 62893,
  "ic_fluent_payment_20_filled": 62894,
  "ic_fluent_payment_24_filled": 62895,
  "ic_fluent_people_16_filled": 62897,
  "ic_fluent_people_20_filled": 62898,
  "ic_fluent_people_24_filled": 62899,
  "ic_fluent_people_28_filled": 62900,
  "ic_fluent_people_add_16_filled": 62901,
  "ic_fluent_people_add_20_filled": 62902,
  "ic_fluent_people_add_24_filled": 62903,
  "ic_fluent_people_audience_24_filled": 62904,
  "ic_fluent_people_community_16_filled": 62905,
  "ic_fluent_people_community_20_filled": 62906,
  "ic_fluent_people_community_24_filled": 62907,
  "ic_fluent_people_community_28_filled": 62908,
  "ic_fluent_people_community_add_24_filled": 62909,
  "ic_fluent_people_prohibited_20_filled": 62910,
  "ic_fluent_people_search_24_filled": 62911,
  "ic_fluent_people_settings_20_filled": 62912,
  "ic_fluent_people_team_16_filled": 62913,
  "ic_fluent_people_team_20_filled": 62914,
  "ic_fluent_people_team_24_filled": 62915,
  "ic_fluent_people_team_28_filled": 62916,
  "ic_fluent_person_12_filled": 62917,
  "ic_fluent_person_16_filled": 62918,
  "ic_fluent_person_20_filled": 62919,
  "ic_fluent_person_24_filled": 62920,
  "ic_fluent_person_28_filled": 62921,
  "ic_fluent_person_48_filled": 62922,
  "ic_fluent_person_accounts_24_filled": 62923,
  "ic_fluent_person_add_20_filled": 62924,
  "ic_fluent_person_add_24_filled": 62925,
  "ic_fluent_person_arrow_left_20_filled": 62926,
  "ic_fluent_person_arrow_left_24_filled": 62927,
  "ic_fluent_person_arrow_right_16_filled": 62928,
  "ic_fluent_person_arrow_right_20_filled": 62929,
  "ic_fluent_person_arrow_right_24_filled": 62930,
  "ic_fluent_person_available_16_filled": 62931,
  "ic_fluent_person_available_24_filled": 62932,
  "ic_fluent_person_board_16_filled": 62934,
  "ic_fluent_person_board_20_filled": 62935,
  "ic_fluent_person_board_24_filled": 62936,
  "ic_fluent_person_call_24_filled": 62937,
  "ic_fluent_person_delete_16_filled": 62938,
  "ic_fluent_person_delete_24_filled": 62939,
  "ic_fluent_person_feedback_20_filled": 62940,
  "ic_fluent_person_feedback_24_filled": 62941,
  "ic_fluent_person_prohibited_20_filled": 62942,
  "ic_fluent_person_question_mark_16_filled": 62943,
  "ic_fluent_person_question_mark_20_filled": 62944,
  "ic_fluent_person_question_mark_24_filled": 62945,
  "ic_fluent_person_support_16_filled": 62946,
  "ic_fluent_person_support_20_filled": 62947,
  "ic_fluent_person_support_24_filled": 62948,
  "ic_fluent_person_swap_16_filled": 62949,
  "ic_fluent_person_swap_20_filled": 62950,
  "ic_fluent_person_swap_24_filled": 62951,
  "ic_fluent_person_voice_20_filled": 62952,
  "ic_fluent_person_voice_24_filled": 62953,
  "ic_fluent_phone_20_filled": 62954,
  "ic_fluent_phone_24_filled": 62955,
  "ic_fluent_phone_desktop_16_filled": 62958,
  "ic_fluent_phone_desktop_20_filled": 62959,
  "ic_fluent_phone_desktop_24_filled": 62960,
  "ic_fluent_phone_desktop_28_filled": 62961,
  "ic_fluent_phone_laptop_20_filled": 62964,
  "ic_fluent_phone_laptop_24_filled": 62965,
  "ic_fluent_phone_link_setup_24_filled": 62966,
  "ic_fluent_phone_page_header_24_filled": 62969,
  "ic_fluent_phone_pagination_24_filled": 62970,
  "ic_fluent_phone_screen_time_24_filled": 62971,
  "ic_fluent_phone_shake_24_filled": 62972,
  "ic_fluent_phone_status_bar_24_filled": 62973,
  "ic_fluent_phone_tablet_20_filled": 62974,
  "ic_fluent_phone_tablet_24_filled": 62975,
  "ic_fluent_phone_update_24_filled": 62978,
  "ic_fluent_phone_vertical_scroll_24_filled": 62979,
  "ic_fluent_phone_vibrate_24_filled": 62980,
  "ic_fluent_photo_filter_24_filled": 62981,
  "ic_fluent_picture_in_picture_16_filled": 62982,
  "ic_fluent_picture_in_picture_20_filled": 62983,
  "ic_fluent_picture_in_picture_24_filled": 62984,
  "ic_fluent_pin_12_filled": 62985,
  "ic_fluent_pin_16_filled": 62986,
  "ic_fluent_pin_20_filled": 62987,
  "ic_fluent_pin_24_filled": 62988,
  "ic_fluent_pin_off_20_filled": 62989,
  "ic_fluent_pin_off_24_filled": 62990,
  "ic_fluent_play_20_filled": 62991,
  "ic_fluent_play_24_filled": 62992,
  "ic_fluent_play_48_filled": 62993,
  "ic_fluent_play_circle_24_filled": 62994,
  "ic_fluent_plug_disconnected_20_filled": 62995,
  "ic_fluent_plug_disconnected_24_filled": 62996,
  "ic_fluent_plug_disconnected_28_filled": 62997,
  "ic_fluent_point_scan_24_filled": 62998,
  "ic_fluent_poll_24_filled": 62999,
  "ic_fluent_power_20_filled": 63000,
  "ic_fluent_power_24_filled": 63001,
  "ic_fluent_power_28_filled": 63002,
  "ic_fluent_predictions_24_filled": 63003,
  "ic_fluent_premium_16_filled": 63004,
  "ic_fluent_premium_20_filled": 63005,
  "ic_fluent_premium_24_filled": 63006,
  "ic_fluent_premium_28_filled": 63007,
  "ic_fluent_presence_available_10_filled": 63008,
  "ic_fluent_presence_available_12_filled": 63009,
  "ic_fluent_presence_available_16_filled": 63010,
  "ic_fluent_presence_away_10_filled": 63011,
  "ic_fluent_presence_away_12_filled": 63012,
  "ic_fluent_presence_away_16_filled": 63013,
  "ic_fluent_presence_busy_10_filled": 63014,
  "ic_fluent_presence_busy_12_filled": 63015,
  "ic_fluent_presence_busy_16_filled": 63016,
  "ic_fluent_presence_dnd_10_filled": 63017,
  "ic_fluent_presence_dnd_12_filled": 63018,
  "ic_fluent_presence_dnd_16_filled": 63019,
  "ic_fluent_presenter_24_filled": 63020,
  "ic_fluent_presenter_off_24_filled": 63021,
  "ic_fluent_preview_link_16_filled": 63022,
  "ic_fluent_preview_link_20_filled": 63023,
  "ic_fluent_preview_link_24_filled": 63024,
  "ic_fluent_previous_16_filled": 63025,
  "ic_fluent_previous_20_filled": 63026,
  "ic_fluent_previous_24_filled": 63027,
  "ic_fluent_print_20_filled": 63028,
  "ic_fluent_print_24_filled": 63029,
  "ic_fluent_print_48_filled": 63030,
  "ic_fluent_prohibited_20_filled": 63031,
  "ic_fluent_prohibited_24_filled": 63032,
  "ic_fluent_prohibited_28_filled": 63033,
  "ic_fluent_prohibited_48_filled": 63034,
  "ic_fluent_protocol_handler_16_filled": 63036,
  "ic_fluent_protocol_handler_20_filled": 63037,
  "ic_fluent_protocol_handler_24_filled": 63038,
  "ic_fluent_qr_code_24_filled": 63039,
  "ic_fluent_qr_code_28_filled": 63040,
  "ic_fluent_question_16_filled": 63041,
  "ic_fluent_question_20_filled": 63042,
  "ic_fluent_question_24_filled": 63043,
  "ic_fluent_question_28_filled": 63044,
  "ic_fluent_question_48_filled": 63045,
  "ic_fluent_question_circle_16_filled": 63046,
  "ic_fluent_question_circle_20_filled": 63047,
  "ic_fluent_question_circle_24_filled": 63048,
  "ic_fluent_question_circle_28_filled": 63049,
  "ic_fluent_question_circle_48_filled": 63050,
  "ic_fluent_quiz_new_24_filled": 63051,
  "ic_fluent_quiz_new_28_filled": 63052,
  "ic_fluent_quiz_new_48_filled": 63053,
  "ic_fluent_radio_button_20_filled": 63054,
  "ic_fluent_radio_button_24_filled": 63055,
  "ic_fluent_rating_mature_16_filled": 63056,
  "ic_fluent_rating_mature_20_filled": 63057,
  "ic_fluent_rating_mature_24_filled": 63058,
  "ic_fluent_re_order_16_filled": 63059,
  "ic_fluent_re_order_24_filled": 63060,
  "ic_fluent_read_aloud_20_filled": 63063,
  "ic_fluent_read_aloud_24_filled": 63064,
  "ic_fluent_reading_list_16_filled": 63067,
  "ic_fluent_reading_list_20_filled": 63068,
  "ic_fluent_reading_list_24_filled": 63069,
  "ic_fluent_reading_list_28_filled": 63070,
  "ic_fluent_reading_list_add_16_filled": 63071,
  "ic_fluent_reading_list_add_20_filled": 63072,
  "ic_fluent_reading_list_add_24_filled": 63073,
  "ic_fluent_reading_list_add_28_filled": 63074,
  "ic_fluent_reading_mode_mobile_20_filled": 63077,
  "ic_fluent_reading_mode_mobile_24_filled": 63078,
  "ic_fluent_record_16_filled": 63082,
  "ic_fluent_record_20_filled": 63083,
  "ic_fluent_record_24_filled": 63084,
  "ic_fluent_rename_16_filled": 63090,
  "ic_fluent_rename_20_filled": 63091,
  "ic_fluent_rename_24_filled": 63092,
  "ic_fluent_rename_28_filled": 63093,
  "ic_fluent_resize_20_filled": 63094,
  "ic_fluent_resize_image_24_filled": 63095,
  "ic_fluent_resize_table_24_filled": 63096,
  "ic_fluent_resize_video_24_filled": 63097,
  "ic_fluent_reward_16_filled": 63099,
  "ic_fluent_reward_20_filled": 63100,
  "ic_fluent_reward_24_filled": 63101,
  "ic_fluent_rewind_20_filled": 63102,
  "ic_fluent_rewind_24_filled": 63103,
  "ic_fluent_rocket_16_filled": 63104,
  "ic_fluent_rocket_20_filled": 63105,
  "ic_fluent_rocket_24_filled": 63106,
  "ic_fluent_router_24_filled": 63107,
  "ic_fluent_row_triple_24_filled": 63108,
  "ic_fluent_ruler_16_filled": 63109,
  "ic_fluent_ruler_20_filled": 63110,
  "ic_fluent_ruler_24_filled": 63111,
  "ic_fluent_run_24_filled": 63112,
  "ic_fluent_save_20_filled": 63113,
  "ic_fluent_save_24_filled": 63114,
  "ic_fluent_save_copy_24_filled": 63117,
  "ic_fluent_savings_16_filled": 63118,
  "ic_fluent_savings_20_filled": 63119,
  "ic_fluent_savings_24_filled": 63120,
  "ic_fluent_scale_fill_24_filled": 63121,
  "ic_fluent_scale_fit_16_filled": 63122,
  "ic_fluent_scale_fit_20_filled": 63123,
  "ic_fluent_scale_fit_24_filled": 63124,
  "ic_fluent_scan_24_filled": 63125,
  "ic_fluent_scratchpad_24_filled": 63126,
  "ic_fluent_screenshot_20_filled": 63127,
  "ic_fluent_screenshot_24_filled": 63128,
  "ic_fluent_search_20_filled": 63129,
  "ic_fluent_search_24_filled": 63130,
  "ic_fluent_search_28_filled": 63131,
  "ic_fluent_search_info_24_filled": 63132,
  "ic_fluent_search_square_24_filled": 63133,
  "ic_fluent_select_all_off_24_filled": 63135,
  "ic_fluent_select_object_20_filled": 63136,
  "ic_fluent_select_object_24_filled": 63137,
  "ic_fluent_send_20_filled": 63138,
  "ic_fluent_send_24_filled": 63139,
  "ic_fluent_send_28_filled": 63140,
  "ic_fluent_send_clock_20_filled": 63141,
  "ic_fluent_send_copy_24_filled": 63142,
  "ic_fluent_serial_port_16_filled": 63146,
  "ic_fluent_serial_port_20_filled": 63147,
  "ic_fluent_serial_port_24_filled": 63148,
  "ic_fluent_service_bell_24_filled": 63149,
  "ic_fluent_settings_16_filled": 63153,
  "ic_fluent_settings_20_filled": 63154,
  "ic_fluent_settings_24_filled": 63155,
  "ic_fluent_settings_28_filled": 63156,
  "ic_fluent_shapes_16_filled": 63157,
  "ic_fluent_shapes_20_filled": 63158,
  "ic_fluent_shapes_24_filled": 63159,
  "ic_fluent_share_20_filled": 63160,
  "ic_fluent_share_24_filled": 63161,
  "ic_fluent_share_android_20_filled": 63162,
  "ic_fluent_share_android_24_filled": 63163,
  "ic_fluent_share_close_tray_24_filled": 63164,
  "ic_fluent_share_ios_20_filled": 63166,
  "ic_fluent_share_ios_24_filled": 63167,
  "ic_fluent_share_ios_28_filled": 63168,
  "ic_fluent_share_ios_48_filled": 63169,
  "ic_fluent_shield_20_filled": 63175,
  "ic_fluent_shield_24_filled": 63176,
  "ic_fluent_shield_dismiss_20_filled": 63177,
  "ic_fluent_shield_dismiss_24_filled": 63178,
  "ic_fluent_shield_error_20_filled": 63179,
  "ic_fluent_shield_error_24_filled": 63180,
  "ic_fluent_shield_keyhole_16_filled": 63181,
  "ic_fluent_shield_keyhole_20_filled": 63182,
  "ic_fluent_shield_keyhole_24_filled": 63183,
  "ic_fluent_shield_prohibited_20_filled": 63184,
  "ic_fluent_shield_prohibited_24_filled": 63185,
  "ic_fluent_shifts_24_filled": 63186,
  "ic_fluent_shifts_28_filled": 63189,
  "ic_fluent_shifts_30_minutes_24_filled": 63190,
  "ic_fluent_shifts_activity_20_filled": 63191,
  "ic_fluent_shifts_activity_24_filled": 63192,
  "ic_fluent_shifts_add_24_filled": 63193,
  "ic_fluent_shifts_availability_24_filled": 63195,
  "ic_fluent_shifts_open_20_filled": 63197,
  "ic_fluent_shifts_open_24_filled": 63198,
  "ic_fluent_shifts_team_24_filled": 63200,
  "ic_fluent_sign_out_24_filled": 63203,
  "ic_fluent_signature_16_filled": 63204,
  "ic_fluent_signature_20_filled": 63205,
  "ic_fluent_signature_24_filled": 63206,
  "ic_fluent_signature_28_filled": 63207,
  "ic_fluent_sim_16_filled": 63211,
  "ic_fluent_sim_20_filled": 63212,
  "ic_fluent_sim_24_filled": 63213,
  "ic_fluent_sleep_24_filled": 63214,
  "ic_fluent_slide_add_24_filled": 63215,
  "ic_fluent_slide_hide_24_filled": 63217,
  "ic_fluent_slide_layout_20_filled": 63218,
  "ic_fluent_slide_layout_24_filled": 63219,
  "ic_fluent_slide_microphone_24_filled": 63220,
  "ic_fluent_slide_text_24_filled": 63221,
  "ic_fluent_snooze_16_filled": 63229,
  "ic_fluent_snooze_24_filled": 63230,
  "ic_fluent_sound_source_24_filled": 63231,
  "ic_fluent_sound_source_28_filled": 63232,
  "ic_fluent_spacebar_24_filled": 63233,
  "ic_fluent_speaker_0_24_filled": 63234,
  "ic_fluent_speaker_1_24_filled": 63236,
  "ic_fluent_speaker_bluetooth_24_filled": 63240,
  "ic_fluent_speaker_edit_16_filled": 63241,
  "ic_fluent_speaker_edit_20_filled": 63242,
  "ic_fluent_speaker_edit_24_filled": 63243,
  "ic_fluent_speaker_off_24_filled": 63247,
  "ic_fluent_speaker_off_28_filled": 63248,
  "ic_fluent_speaker_settings_24_filled": 63249,
  "ic_fluent_spinner_ios_20_filled": 63250,
  "ic_fluent_star_12_filled": 63254,
  "ic_fluent_star_16_filled": 63255,
  "ic_fluent_star_20_filled": 63256,
  "ic_fluent_star_24_filled": 63257,
  "ic_fluent_star_28_filled": 63258,
  "ic_fluent_star_add_16_filled": 63259,
  "ic_fluent_star_add_20_filled": 63260,
  "ic_fluent_star_add_24_filled": 63261,
  "ic_fluent_star_arrow_right_start_24_filled": 63263,
  "ic_fluent_star_emphasis_24_filled": 63264,
  "ic_fluent_star_half_12_filled": 63265,
  "ic_fluent_star_half_16_filled": 63266,
  "ic_fluent_star_half_20_filled": 63267,
  "ic_fluent_star_half_24_filled": 63268,
  "ic_fluent_star_half_28_filled": 63269,
  "ic_fluent_star_off_12_filled": 63270,
  "ic_fluent_star_off_16_filled": 63271,
  "ic_fluent_star_off_20_filled": 63272,
  "ic_fluent_star_off_24_filled": 63273,
  "ic_fluent_star_off_28_filled": 63274,
  "ic_fluent_star_one_quarter_12_filled": 63275,
  "ic_fluent_star_one_quarter_16_filled": 63276,
  "ic_fluent_star_one_quarter_20_filled": 63277,
  "ic_fluent_star_one_quarter_24_filled": 63278,
  "ic_fluent_star_one_quarter_28_filled": 63279,
  "ic_fluent_star_prohibited_16_filled": 63280,
  "ic_fluent_star_prohibited_20_filled": 63281,
  "ic_fluent_star_prohibited_24_filled": 63282,
  "ic_fluent_star_settings_24_filled": 63283,
  "ic_fluent_star_three_quarter_12_filled": 63284,
  "ic_fluent_star_three_quarter_16_filled": 63285,
  "ic_fluent_star_three_quarter_20_filled": 63286,
  "ic_fluent_star_three_quarter_24_filled": 63287,
  "ic_fluent_star_three_quarter_28_filled": 63288,
  "ic_fluent_status_16_filled": 63289,
  "ic_fluent_status_20_filled": 63290,
  "ic_fluent_status_24_filled": 63291,
  "ic_fluent_stethoscope_20_filled": 63292,
  "ic_fluent_stethoscope_24_filled": 63293,
  "ic_fluent_sticker_20_filled": 63294,
  "ic_fluent_sticker_24_filled": 63295,
  "ic_fluent_sticker_add_24_filled": 63296,
  "ic_fluent_stop_16_filled": 63297,
  "ic_fluent_stop_20_filled": 63298,
  "ic_fluent_stop_24_filled": 63299,
  "ic_fluent_storage_24_filled": 63300,
  "ic_fluent_store_microsoft_16_filled": 63304,
  "ic_fluent_store_microsoft_20_filled": 63305,
  "ic_fluent_store_microsoft_24_filled": 63306,
  "ic_fluent_style_guide_24_filled": 63307,
  "ic_fluent_sub_grid_24_filled": 63308,
  "ic_fluent_surface_earbuds_20_filled": 63312,
  "ic_fluent_surface_earbuds_24_filled": 63313,
  "ic_fluent_surface_hub_20_filled": 63314,
  "ic_fluent_surface_hub_24_filled": 63315,
  "ic_fluent_swipe_down_24_filled": 63316,
  "ic_fluent_swipe_right_24_filled": 63317,
  "ic_fluent_swipe_up_24_filled": 63318,
  "ic_fluent_symbols_24_filled": 63319,
  "ic_fluent_sync_off_16_filled": 63320,
  "ic_fluent_sync_off_20_filled": 63321,
  "ic_fluent_system_24_filled": 63322,
  "ic_fluent_tab_16_filled": 63323,
  "ic_fluent_tab_20_filled": 63324,
  "ic_fluent_tab_24_filled": 63325,
  "ic_fluent_tab_28_filled": 63326,
  "ic_fluent_tab_desktop_20_filled": 63327,
  "ic_fluent_tab_desktop_arrow_clockwise_16_filled": 63328,
  "ic_fluent_tab_desktop_arrow_clockwise_20_filled": 63329,
  "ic_fluent_tab_desktop_arrow_clockwise_24_filled": 63330,
  "ic_fluent_tab_desktop_clock_20_filled": 63331,
  "ic_fluent_tab_desktop_copy_20_filled": 63332,
  "ic_fluent_tab_desktop_image_16_filled": 63333,
  "ic_fluent_tab_desktop_image_20_filled": 63334,
  "ic_fluent_tab_desktop_image_24_filled": 63335,
  "ic_fluent_tab_desktop_multiple_20_filled": 63336,
  "ic_fluent_tab_desktop_new_page_20_filled": 63337,
  "ic_fluent_tab_in_private_16_filled": 63338,
  "ic_fluent_tab_in_private_20_filled": 63339,
  "ic_fluent_tab_in_private_24_filled": 63340,
  "ic_fluent_tab_in_private_28_filled": 63341,
  "ic_fluent_tab_inprivate_account_20_filled": 63342,
  "ic_fluent_tab_inprivate_account_24_filled": 63343,
  "ic_fluent_table_20_filled": 63349,
  "ic_fluent_table_24_filled": 63350,
  "ic_fluent_table_add_24_filled": 63351,
  "ic_fluent_table_cells_merge_20_filled": 63352,
  "ic_fluent_table_cells_merge_24_filled": 63353,
  "ic_fluent_table_cells_split_20_filled": 63354,
  "ic_fluent_table_cells_split_24_filled": 63355,
  "ic_fluent_table_edit_24_filled": 63360,
  "ic_fluent_table_freeze_column_24_filled": 63362,
  "ic_fluent_table_freeze_row_24_filled": 63363,
  "ic_fluent_table_move_left_24_filled": 63369,
  "ic_fluent_table_move_right_24_filled": 63370,
  "ic_fluent_table_settings_24_filled": 63375,
  "ic_fluent_table_switch_24_filled": 63376,
  "ic_fluent_tablet_20_filled": 63377,
  "ic_fluent_tablet_24_filled": 63378,
  "ic_fluent_tabs_24_filled": 63379,
  "ic_fluent_tag_20_filled": 63380,
  "ic_fluent_tag_24_filled": 63381,
  "ic_fluent_tap_double_24_filled": 63382,
  "ic_fluent_tap_single_24_filled": 63383,
  "ic_fluent_target_16_filled": 63384,
  "ic_fluent_target_20_filled": 63385,
  "ic_fluent_target_24_filled": 63386,
  "ic_fluent_target_edit_16_filled": 63387,
  "ic_fluent_target_edit_20_filled": 63388,
  "ic_fluent_target_edit_24_filled": 63389,
  "ic_fluent_task_list_add_20_filled": 63392,
  "ic_fluent_task_list_add_24_filled": 63393,
  "ic_fluent_tasks_app_24_filled": 63394,
  "ic_fluent_tasks_app_28_filled": 63395,
  "ic_fluent_teddy_24_filled": 63398,
  "ic_fluent_temperature_20_filled": 63399,
  "ic_fluent_temperature_24_filled": 63400,
  "ic_fluent_tent_24_filled": 63401,
  "ic_fluent_text_add_space_after_20_filled": 63405,
  "ic_fluent_text_add_space_after_24_filled": 63406,
  "ic_fluent_text_add_space_before_20_filled": 63407,
  "ic_fluent_text_add_space_before_24_filled": 63408,
  "ic_fluent_text_align_center_20_filled": 63409,
  "ic_fluent_text_align_center_24_filled": 63410,
  "ic_fluent_text_align_distributed_20_filled": 63411,
  "ic_fluent_text_align_distributed_24_filled": 63412,
  "ic_fluent_text_align_justify_20_filled": 63413,
  "ic_fluent_text_align_justify_24_filled": 63414,
  "ic_fluent_text_align_left_20_filled": 63415,
  "ic_fluent_text_align_left_24_filled": 63416,
  "ic_fluent_text_align_right_20_filled": 63417,
  "ic_fluent_text_align_right_24_filled": 63418,
  "ic_fluent_text_asterisk_20_filled": 63419,
  "ic_fluent_text_bold_20_filled": 63420,
  "ic_fluent_text_bold_24_filled": 63421,
  "ic_fluent_text_bullet_list_add_24_filled": 63424,
  "ic_fluent_text_bullet_list_square_24_filled": 63425,
  "ic_fluent_text_bullet_list_square_warning_16_filled": 63426,
  "ic_fluent_text_bullet_list_square_warning_20_filled": 63427,
  "ic_fluent_text_bullet_list_square_warning_24_filled": 63428,
  "ic_fluent_text_bullet_list_tree_16_filled": 63429,
  "ic_fluent_text_bullet_list_tree_20_filled": 63430,
  "ic_fluent_text_bullet_list_tree_24_filled": 63431,
  "ic_fluent_text_change_case_20_filled": 63434,
  "ic_fluent_text_change_case_24_filled": 63435,
  "ic_fluent_text_clear_formatting_20_filled": 63444,
  "ic_fluent_text_clear_formatting_24_filled": 63445,
  "ic_fluent_text_collapse_24_filled": 63446,
  "ic_fluent_text_color_20_filled": 63447,
  "ic_fluent_text_color_24_filled": 63448,
  "ic_fluent_text_column_one_20_filled": 63449,
  "ic_fluent_text_column_one_24_filled": 63450,
  "ic_fluent_text_column_three_20_filled": 63451,
  "ic_fluent_text_column_three_24_filled": 63452,
  "ic_fluent_text_column_two_20_filled": 63453,
  "ic_fluent_text_column_two_24_filled": 63454,
  "ic_fluent_text_column_two_left_20_filled": 63455,
  "ic_fluent_text_column_two_left_24_filled": 63456,
  "ic_fluent_text_column_two_right_20_filled": 63457,
  "ic_fluent_text_column_two_right_24_filled": 63458,
  "ic_fluent_text_description_20_filled": 63459,
  "ic_fluent_text_description_24_filled": 63460,
  "ic_fluent_text_direction_vertical_20_filled": 63471,
  "ic_fluent_text_direction_vertical_24_filled": 63472,
  "ic_fluent_text_edit_style_20_filled": 63473,
  "ic_fluent_text_edit_style_24_filled": 63474,
  "ic_fluent_text_effects_20_filled": 63475,
  "ic_fluent_text_effects_24_filled": 63476,
  "ic_fluent_text_expand_24_filled": 63477,
  "ic_fluent_text_field_16_filled": 63478,
  "ic_fluent_text_field_20_filled": 63479,
  "ic_fluent_text_field_24_filled": 63480,
  "ic_fluent_text_first_line_20_filled": 63481,
  "ic_fluent_text_first_line_24_filled": 63482,
  "ic_fluent_text_font_16_filled": 63483,
  "ic_fluent_text_font_20_filled": 63484,
  "ic_fluent_text_font_24_filled": 63485,
  "ic_fluent_text_font_size_20_filled": 63486,
  "ic_fluent_text_font_size_24_filled": 63487,
  "ic_fluent_text_footnote_20_filled": 63488,
  "ic_fluent_text_footnote_24_filled": 63489,
  "ic_fluent_text_hanging_20_filled": 63493,
  "ic_fluent_text_hanging_24_filled": 63494,
  "ic_fluent_text_header_1_20_filled": 63495,
  "ic_fluent_text_header_2_20_filled": 63496,
  "ic_fluent_text_header_3_20_filled": 63497,
  "ic_fluent_text_italic_20_filled": 63500,
  "ic_fluent_text_italic_24_filled": 63501,
  "ic_fluent_text_line_spacing_20_filled": 63502,
  "ic_fluent_text_line_spacing_24_filled": 63503,
  "ic_fluent_text_number_format_20_filled": 63504,
  "ic_fluent_text_number_format_24_filled": 63505,
  "ic_fluent_text_number_list_ltr_20_filled": 63506,
  "ic_fluent_text_number_list_ltr_24_filled": 63507,
  "ic_fluent_text_number_list_rtl_24_filled": 63508,
  "ic_fluent_text_proofing_tools_20_filled": 63511,
  "ic_fluent_text_proofing_tools_24_filled": 63512,
  "ic_fluent_text_quote_20_filled": 63513,
  "ic_fluent_text_quote_24_filled": 63514,
  "ic_fluent_text_sort_ascending_20_filled": 63515,
  "ic_fluent_text_sort_descending_20_filled": 63516,
  "ic_fluent_text_subscript_20_filled": 63519,
  "ic_fluent_text_subscript_24_filled": 63520,
  "ic_fluent_text_superscript_20_filled": 63521,
  "ic_fluent_text_superscript_24_filled": 63522,
  "ic_fluent_text_underline_20_filled": 63523,
  "ic_fluent_text_underline_24_filled": 63524,
  "ic_fluent_text_word_count_20_filled": 63525,
  "ic_fluent_text_word_count_24_filled": 63526,
  "ic_fluent_text_wrap_24_filled": 63527,
  "ic_fluent_textbox_20_filled": 63528,
  "ic_fluent_textbox_24_filled": 63529,
  "ic_fluent_textbox_align_bottom_20_filled": 63532,
  "ic_fluent_textbox_align_bottom_24_filled": 63533,
  "ic_fluent_textbox_align_middle_20_filled": 63534,
  "ic_fluent_textbox_align_middle_24_filled": 63535,
  "ic_fluent_textbox_align_top_20_filled": 63536,
  "ic_fluent_textbox_align_top_24_filled": 63537,
  "ic_fluent_thinking_20_filled": 63540,
  "ic_fluent_thinking_24_filled": 63541,
  "ic_fluent_thumb_dislike_20_filled": 63542,
  "ic_fluent_thumb_dislike_24_filled": 63543,
  "ic_fluent_thumb_like_20_filled": 63544,
  "ic_fluent_thumb_like_24_filled": 63545,
  "ic_fluent_time_and_weather_24_filled": 63548,
  "ic_fluent_time_picker_24_filled": 63549,
  "ic_fluent_timeline_24_filled": 63550,
  "ic_fluent_timer_10_24_filled": 63551,
  "ic_fluent_timer_24_filled": 63552,
  "ic_fluent_timer_2_24_filled": 63553,
  "ic_fluent_timer_off_24_filled": 63554,
  "ic_fluent_toggle_right_16_filled": 63555,
  "ic_fluent_toggle_right_20_filled": 63556,
  "ic_fluent_toggle_right_24_filled": 63557,
  "ic_fluent_toolbox_16_filled": 63558,
  "ic_fluent_toolbox_20_filled": 63559,
  "ic_fluent_toolbox_24_filled": 63560,
  "ic_fluent_toolbox_28_filled": 63561,
  "ic_fluent_top_speed_24_filled": 63562,
  "ic_fluent_translate_20_filled": 63563,
  "ic_fluent_translate_24_filled": 63564,
  "ic_fluent_trophy_16_filled": 63565,
  "ic_fluent_trophy_20_filled": 63566,
  "ic_fluent_trophy_24_filled": 63567,
  "ic_fluent_uninstall_app_24_filled": 63568,
  "ic_fluent_usb_stick_20_filled": 63575,
  "ic_fluent_usb_stick_24_filled": 63576,
  "ic_fluent_vault_16_filled": 63577,
  "ic_fluent_vault_20_filled": 63578,
  "ic_fluent_vault_24_filled": 63579,
  "ic_fluent_vehicle_bicycle_24_filled": 63580,
  "ic_fluent_vehicle_bus_24_filled": 63581,
  "ic_fluent_vehicle_cab_24_filled": 63582,
  "ic_fluent_vehicle_car_16_filled": 63583,
  "ic_fluent_vehicle_car_20_filled": 63584,
  "ic_fluent_vehicle_car_24_filled": 63585,
  "ic_fluent_vehicle_truck_24_filled": 63586,
  "ic_fluent_video_16_filled": 63587,
  "ic_fluent_video_20_filled": 63588,
  "ic_fluent_video_24_filled": 63589,
  "ic_fluent_video_28_filled": 63590,
  "ic_fluent_video_background_effect_24_filled": 63591,
  "ic_fluent_video_clip_24_filled": 63592,
  "ic_fluent_video_off_20_filled": 63593,
  "ic_fluent_video_off_24_filled": 63594,
  "ic_fluent_video_off_28_filled": 63595,
  "ic_fluent_video_person_24_filled": 63596,
  "ic_fluent_video_person_off_24_filled": 63597,
  "ic_fluent_video_person_star_24_filled": 63598,
  "ic_fluent_video_play_pause_24_filled": 63599,
  "ic_fluent_video_security_20_filled": 63600,
  "ic_fluent_video_security_24_filled": 63601,
  "ic_fluent_video_switch_24_filled": 63602,
  "ic_fluent_view_desktop_20_filled": 63603,
  "ic_fluent_view_desktop_24_filled": 63604,
  "ic_fluent_view_desktop_mobile_20_filled": 63605,
  "ic_fluent_view_desktop_mobile_24_filled": 63606,
  "ic_fluent_voicemail_16_filled": 63610,
  "ic_fluent_voicemail_20_filled": 63611,
  "ic_fluent_voicemail_24_filled": 63612,
  "ic_fluent_walkie_talkie_24_filled": 63613,
  "ic_fluent_walkie_talkie_28_filled": 63614,
  "ic_fluent_wallpaper_24_filled": 63615,
  "ic_fluent_warning_16_filled": 63616,
  "ic_fluent_warning_20_filled": 63617,
  "ic_fluent_warning_24_filled": 63618,
  "ic_fluent_weather_blowing_snow_20_filled": 63619,
  "ic_fluent_weather_blowing_snow_24_filled": 63620,
  "ic_fluent_weather_blowing_snow_48_filled": 63621,
  "ic_fluent_weather_cloudy_20_filled": 63622,
  "ic_fluent_weather_cloudy_24_filled": 63623,
  "ic_fluent_weather_cloudy_48_filled": 63624,
  "ic_fluent_weather_duststorm_20_filled": 63625,
  "ic_fluent_weather_duststorm_24_filled": 63626,
  "ic_fluent_weather_duststorm_48_filled": 63627,
  "ic_fluent_weather_fog_20_filled": 63628,
  "ic_fluent_weather_fog_24_filled": 63629,
  "ic_fluent_weather_fog_48_filled": 63630,
  "ic_fluent_weather_hail_day_20_filled": 63631,
  "ic_fluent_weather_hail_day_24_filled": 63632,
  "ic_fluent_weather_hail_day_48_filled": 63633,
  "ic_fluent_weather_hail_night_20_filled": 63634,
  "ic_fluent_weather_hail_night_24_filled": 63635,
  "ic_fluent_weather_hail_night_48_filled": 63636,
  "ic_fluent_weather_moon_20_filled": 63637,
  "ic_fluent_weather_moon_24_filled": 63638,
  "ic_fluent_weather_moon_48_filled": 63639,
  "ic_fluent_weather_partly_cloudy_day_20_filled": 63640,
  "ic_fluent_weather_partly_cloudy_day_24_filled": 63641,
  "ic_fluent_weather_partly_cloudy_day_48_filled": 63642,
  "ic_fluent_weather_partly_cloudy_night_20_filled": 63643,
  "ic_fluent_weather_partly_cloudy_night_24_filled": 63644,
  "ic_fluent_weather_partly_cloudy_night_48_filled": 63645,
  "ic_fluent_weather_rain_20_filled": 63646,
  "ic_fluent_weather_rain_24_filled": 63647,
  "ic_fluent_weather_rain_48_filled": 63648,
  "ic_fluent_weather_rain_showers_day_20_filled": 63649,
  "ic_fluent_weather_rain_showers_day_24_filled": 63650,
  "ic_fluent_weather_rain_showers_day_48_filled": 63651,
  "ic_fluent_weather_rain_showers_night_20_filled": 63652,
  "ic_fluent_weather_rain_showers_night_24_filled": 63653,
  "ic_fluent_weather_rain_showers_night_48_filled": 63654,
  "ic_fluent_weather_rain_snow_20_filled": 63655,
  "ic_fluent_weather_rain_snow_24_filled": 63656,
  "ic_fluent_weather_rain_snow_48_filled": 63657,
  "ic_fluent_weather_snow_20_filled": 63658,
  "ic_fluent_weather_snow_24_filled": 63659,
  "ic_fluent_weather_snow_48_filled": 63660,
  "ic_fluent_weather_snow_shower_day_20_filled": 63661,
  "ic_fluent_weather_snow_shower_day_24_filled": 63662,
  "ic_fluent_weather_snow_shower_day_48_filled": 63663,
  "ic_fluent_weather_snow_shower_night_20_filled": 63664,
  "ic_fluent_weather_snow_shower_night_24_filled": 63665,
  "ic_fluent_weather_snow_shower_night_48_filled": 63666,
  "ic_fluent_weather_snowflake_20_filled": 63667,
  "ic_fluent_weather_snowflake_24_filled": 63668,
  "ic_fluent_weather_snowflake_48_filled": 63669,
  "ic_fluent_weather_squalls_20_filled": 63670,
  "ic_fluent_weather_squalls_24_filled": 63671,
  "ic_fluent_weather_squalls_48_filled": 63672,
  "ic_fluent_weather_sunny_20_filled": 63673,
  "ic_fluent_weather_sunny_24_filled": 63674,
  "ic_fluent_weather_sunny_48_filled": 63675,
  "ic_fluent_weather_thunderstorm_20_filled": 63676,
  "ic_fluent_weather_thunderstorm_24_filled": 63677,
  "ic_fluent_weather_thunderstorm_48_filled": 63678,
  "ic_fluent_web_asset_24_filled": 63679,
  "ic_fluent_whiteboard_20_filled": 63682,
  "ic_fluent_whiteboard_24_filled": 63683,
  "ic_fluent_wifi_1_20_filled": 63684,
  "ic_fluent_wifi_1_24_filled": 63685,
  "ic_fluent_wifi_2_20_filled": 63686,
  "ic_fluent_wifi_2_24_filled": 63687,
  "ic_fluent_wifi_3_20_filled": 63688,
  "ic_fluent_wifi_3_24_filled": 63689,
  "ic_fluent_wifi_4_20_filled": 63690,
  "ic_fluent_wifi_4_24_filled": 63691,
  "ic_fluent_window_20_filled": 63693,
  "ic_fluent_window_ad_20_filled": 63694,
  "ic_fluent_window_dev_tools_16_filled": 63695,
  "ic_fluent_window_dev_tools_20_filled": 63696,
  "ic_fluent_window_dev_tools_24_filled": 63697,
  "ic_fluent_window_inprivate_20_filled": 63698,
  "ic_fluent_window_inprivate_account_20_filled": 63699,
  "ic_fluent_window_multiple_20_filled": 63700,
  "ic_fluent_window_new_20_filled": 63701,
  "ic_fluent_window_shield_16_filled": 63702,
  "ic_fluent_window_shield_20_filled": 63703,
  "ic_fluent_window_shield_24_filled": 63704,
  "ic_fluent_wrench_24_filled": 63705,
  "ic_fluent_xbox_console_20_filled": 63706,
  "ic_fluent_xbox_console_24_filled": 63707,
  "ic_fluent_zoom_in_20_filled": 63708,
  "ic_fluent_zoom_in_24_filled": 63709,
  "ic_fluent_zoom_out_20_filled": 63710,
  "ic_fluent_zoom_out_24_filled": 63711,
  "ic_fluent_calendar_checkmark_24_filled": 63713,
  "ic_fluent_add_square_24_filled": 63714,
  "ic_fluent_apps_list_20_filled": 63715,
  "ic_fluent_archive_16_filled": 63716,
  "ic_fluent_arrow_autofit_height_24_filled": 63717,
  "ic_fluent_arrow_autofit_width_24_filled": 63718,
  "ic_fluent_arrow_counterclockwise_28_filled": 63719,
  "ic_fluent_arrow_down_12_filled": 63720,
  "ic_fluent_arrow_down_left_16_filled": 63721,
  "ic_fluent_arrow_export_rtl_20_filled": 63722,
  "ic_fluent_arrow_hook_down_left_16_filled": 63725,
  "ic_fluent_arrow_hook_down_left_20_filled": 63726,
  "ic_fluent_arrow_hook_down_left_24_filled": 63727,
  "ic_fluent_arrow_hook_down_left_28_filled": 63728,
  "ic_fluent_arrow_hook_down_right_16_filled": 63729,
  "ic_fluent_arrow_hook_down_right_20_filled": 63730,
  "ic_fluent_arrow_hook_down_right_24_filled": 63731,
  "ic_fluent_arrow_hook_down_right_28_filled": 63732,
  "ic_fluent_arrow_hook_up_left_16_filled": 63733,
  "ic_fluent_arrow_hook_up_left_20_filled": 63734,
  "ic_fluent_arrow_hook_up_left_24_filled": 63735,
  "ic_fluent_arrow_hook_up_left_28_filled": 63736,
  "ic_fluent_arrow_hook_up_right_16_filled": 63737,
  "ic_fluent_arrow_hook_up_right_20_filled": 63738,
  "ic_fluent_arrow_hook_up_right_24_filled": 63739,
  "ic_fluent_arrow_hook_up_right_28_filled": 63740,
  "ic_fluent_arrow_move_20_filled": 63741,
  "ic_fluent_arrow_redo_32_filled": 63742,
  "ic_fluent_arrow_redo_48_filled": 63743,
  "ic_fluent_arrow_up_right_16_filled": 57646,
  "ic_fluent_attach_arrow_right_20_filled": 57655,
  "ic_fluent_attach_arrow_right_24_filled": 57656,
  "ic_fluent_attach_text_24_filled": 57658,
  "ic_fluent_backpack_12_filled": 57664,
  "ic_fluent_backpack_16_filled": 57665,
  "ic_fluent_backpack_20_filled": 57666,
  "ic_fluent_backpack_24_filled": 57667,
  "ic_fluent_backpack_28_filled": 57668,
  "ic_fluent_backpack_48_filled": 57670,
  "ic_fluent_balloon_16_filled": 57677,
  "ic_fluent_bed_16_filled": 57689,
  "ic_fluent_bluetooth_28_filled": 57694,
  "ic_fluent_blur_16_filled": 57698,
  "ic_fluent_blur_20_filled": 57699,
  "ic_fluent_blur_24_filled": 57700,
  "ic_fluent_blur_28_filled": 57701,
  "ic_fluent_book_20_filled": 57714,
  "ic_fluent_book_24_filled": 57715,
  "ic_fluent_book_add_20_filled": 57716,
  "ic_fluent_book_add_24_filled": 57717,
  "ic_fluent_book_clock_24_filled": 57721,
  "ic_fluent_book_coins_24_filled": 57723,
  "ic_fluent_book_compass_24_filled": 57725,
  "ic_fluent_book_database_24_filled": 57731,
  "ic_fluent_book_exclamation_mark_24_filled": 57733,
  "ic_fluent_book_information_24_filled": 57736,
  "ic_fluent_book_letter_24_filled": 57738,
  "ic_fluent_book_open_20_filled": 57740,
  "ic_fluent_book_open_24_filled": 57741,
  "ic_fluent_book_open_globe_24_filled": 57746,
  "ic_fluent_book_pulse_24_filled": 57753,
  "ic_fluent_book_question_mark_24_filled": 57755,
  "ic_fluent_book_search_24_filled": 57758,
  "ic_fluent_book_star_24_filled": 57760,
  "ic_fluent_book_theta_24_filled": 57763,
  "ic_fluent_border_all_24_filled": 57777,
  "ic_fluent_border_bottom_24_filled": 57779,
  "ic_fluent_border_bottom_double_24_filled": 57781,
  "ic_fluent_border_bottom_thick_24_filled": 57783,
  "ic_fluent_border_left_24_filled": 57785,
  "ic_fluent_border_outside_24_filled": 57791,
  "ic_fluent_border_outside_thick_24_filled": 57793,
  "ic_fluent_border_right_24_filled": 57795,
  "ic_fluent_border_top_24_filled": 57797,
  "ic_fluent_border_top_bottom_24_filled": 57799,
  "ic_fluent_border_top_bottom_double_24_filled": 57801,
  "ic_fluent_border_top_bottom_thick_24_filled": 57803,
  "ic_fluent_briefcase_12_filled": 57852,
  "ic_fluent_briefcase_32_filled": 57855,
  "ic_fluent_bug_16_filled": 57881,
  "ic_fluent_bug_20_filled": 57882,
  "ic_fluent_bug_24_filled": 57883,
  "ic_fluent_building_bank_16_filled": 57888,
  "ic_fluent_building_bank_20_filled": 57889,
  "ic_fluent_building_bank_24_filled": 57890,
  "ic_fluent_building_government_24_filled": 57905,
  "ic_fluent_building_government_32_filled": 57906,
  "ic_fluent_building_multiple_24_filled": 57912,
  "ic_fluent_building_shop_16_filled": 57921,
  "ic_fluent_building_shop_20_filled": 57922,
  "ic_fluent_building_shop_24_filled": 57923,
  "ic_fluent_building_skyscraper_16_filled": 57924,
  "ic_fluent_building_skyscraper_20_filled": 57925,
  "ic_fluent_building_skyscraper_24_filled": 57926,
  "ic_fluent_calendar_cancel_16_filled": 57940,
  "ic_fluent_calendar_clock_16_filled": 57943,
  "ic_fluent_calendar_mention_20_filled": 57961,
  "ic_fluent_calendar_person_24_filled": 57967,
  "ic_fluent_calendar_question_mark_16_filled": 57970,
  "ic_fluent_calendar_question_mark_20_filled": 57971,
  "ic_fluent_calendar_question_mark_24_filled": 57972,
  "ic_fluent_call_forward_16_filled": 58000,
  "ic_fluent_call_forward_20_filled": 58001,
  "ic_fluent_call_forward_28_filled": 58002,
  "ic_fluent_call_forward_48_filled": 58003,
  "ic_fluent_call_inbound_20_filled": 58004,
  "ic_fluent_call_inbound_28_filled": 58005,
  "ic_fluent_call_inbound_48_filled": 58006,
  "ic_fluent_call_missed_28_filled": 58008,
  "ic_fluent_call_missed_48_filled": 58009,
  "ic_fluent_call_outbound_20_filled": 58010,
  "ic_fluent_call_outbound_28_filled": 58011,
  "ic_fluent_call_outbound_48_filled": 58012,
  "ic_fluent_call_park_16_filled": 58013,
  "ic_fluent_call_park_20_filled": 58014,
  "ic_fluent_call_park_28_filled": 58015,
  "ic_fluent_call_park_48_filled": 58016,
  "ic_fluent_camera_edit_20_filled": 58035,
  "ic_fluent_caret_up_12_filled": 58043,
  "ic_fluent_caret_up_16_filled": 58044,
  "ic_fluent_caret_up_20_filled": 58045,
  "ic_fluent_caret_up_24_filled": 58046,
  "ic_fluent_cart_16_filled": 58047,
  "ic_fluent_cart_20_filled": 58048,
  "ic_fluent_channel_28_filled": 58064,
  "ic_fluent_channel_48_filled": 58065,
  "ic_fluent_channel_add_16_filled": 58066,
  "ic_fluent_channel_add_20_filled": 58067,
  "ic_fluent_channel_add_24_filled": 58068,
  "ic_fluent_channel_add_28_filled": 58069,
  "ic_fluent_channel_add_48_filled": 58070,
  "ic_fluent_channel_alert_16_filled": 58071,
  "ic_fluent_channel_alert_20_filled": 58072,
  "ic_fluent_channel_alert_24_filled": 58073,
  "ic_fluent_channel_alert_28_filled": 58074,
  "ic_fluent_channel_alert_48_filled": 58075,
  "ic_fluent_channel_arrow_left_16_filled": 58076,
  "ic_fluent_channel_arrow_left_20_filled": 58077,
  "ic_fluent_channel_arrow_left_24_filled": 58078,
  "ic_fluent_channel_arrow_left_28_filled": 58079,
  "ic_fluent_channel_arrow_left_48_filled": 58080,
  "ic_fluent_channel_dismiss_16_filled": 58081,
  "ic_fluent_channel_dismiss_20_filled": 58082,
  "ic_fluent_channel_dismiss_24_filled": 58083,
  "ic_fluent_channel_dismiss_28_filled": 58084,
  "ic_fluent_channel_dismiss_48_filled": 58085,
  "ic_fluent_chat_16_filled": 58104,
  "ic_fluent_checkmark_16_filled": 58137,
  "ic_fluent_clipboard_paste_16_filled": 58223,
  "ic_fluent_clock_dismiss_24_filled": 58248,
  "ic_fluent_closed_caption_16_filled": 58253,
  "ic_fluent_closed_caption_20_filled": 58254,
  "ic_fluent_closed_caption_28_filled": 58255,
  "ic_fluent_closed_caption_48_filled": 58257,
  "ic_fluent_color_line_16_filled": 58324,
  "ic_fluent_comment_12_filled": 58335,
  "ic_fluent_comment_28_filled": 58336,
  "ic_fluent_comment_48_filled": 58337,
  "ic_fluent_comment_add_12_filled": 58338,
  "ic_fluent_comment_add_16_filled": 58339,
  "ic_fluent_comment_add_20_filled": 58340,
  "ic_fluent_comment_add_28_filled": 58341,
  "ic_fluent_comment_add_48_filled": 58342,
  "ic_fluent_comment_arrow_left_12_filled": 58343,
  "ic_fluent_comment_arrow_left_16_filled": 58344,
  "ic_fluent_comment_arrow_left_20_filled": 58345,
  "ic_fluent_comment_arrow_left_28_filled": 58347,
  "ic_fluent_comment_arrow_left_48_filled": 58348,
  "ic_fluent_comment_arrow_right_12_filled": 58349,
  "ic_fluent_comment_arrow_right_16_filled": 58350,
  "ic_fluent_comment_arrow_right_20_filled": 58351,
  "ic_fluent_comment_arrow_right_28_filled": 58353,
  "ic_fluent_comment_arrow_right_48_filled": 58354,
  "ic_fluent_comment_checkmark_12_filled": 58355,
  "ic_fluent_comment_checkmark_16_filled": 58356,
  "ic_fluent_comment_checkmark_20_filled": 58357,
  "ic_fluent_comment_checkmark_24_filled": 58358,
  "ic_fluent_comment_checkmark_28_filled": 58359,
  "ic_fluent_comment_checkmark_48_filled": 58360,
  "ic_fluent_comment_edit_20_filled": 58363,
  "ic_fluent_comment_edit_24_filled": 58364,
  "ic_fluent_comment_off_16_filled": 58380,
  "ic_fluent_comment_off_20_filled": 58381,
  "ic_fluent_comment_off_24_filled": 58382,
  "ic_fluent_comment_off_28_filled": 58383,
  "ic_fluent_comment_off_48_filled": 58384,
  "ic_fluent_contact_card_group_16_filled": 58392,
  "ic_fluent_contact_card_group_20_filled": 58393,
  "ic_fluent_contact_card_group_28_filled": 58394,
  "ic_fluent_contact_card_group_48_filled": 58395,
  "ic_fluent_convert_range_24_filled": 58410,
  "ic_fluent_copy_add_24_filled": 58412,
  "ic_fluent_copy_select_20_filled": 58416,
  "ic_fluent_couch_12_filled": 58417,
  "ic_fluent_couch_24_filled": 58419,
  "ic_fluent_crop_20_filled": 58423,
  "ic_fluent_currency_dollar_rupee_16_filled": 58444,
  "ic_fluent_currency_dollar_rupee_20_filled": 58445,
  "ic_fluent_currency_dollar_rupee_24_filled": 58446,
  "ic_fluent_cursor_20_filled": 58447,
  "ic_fluent_cursor_24_filled": 58448,
  "ic_fluent_cursor_hover_16_filled": 58451,
  "ic_fluent_cursor_hover_20_filled": 58452,
  "ic_fluent_cursor_hover_24_filled": 58453,
  "ic_fluent_cursor_hover_28_filled": 58454,
  "ic_fluent_cursor_hover_32_filled": 58455,
  "ic_fluent_cursor_hover_48_filled": 58456,
  "ic_fluent_cursor_hover_off_16_filled": 58457,
  "ic_fluent_cursor_hover_off_20_filled": 58458,
  "ic_fluent_cursor_hover_off_24_filled": 58459,
  "ic_fluent_cursor_hover_off_28_filled": 58460,
  "ic_fluent_cursor_hover_off_48_filled": 58461,
  "ic_fluent_data_bar_vertical_add_24_filled": 58465,
  "ic_fluent_data_usage_20_filled": 58475,
  "ic_fluent_decimal_arrow_left_24_filled": 58500,
  "ic_fluent_decimal_arrow_right_24_filled": 58502,
  "ic_fluent_delete_16_filled": 58503,
  "ic_fluent_dentist_12_filled": 58510,
  "ic_fluent_dentist_16_filled": 58511,
  "ic_fluent_dentist_20_filled": 58512,
  "ic_fluent_dentist_28_filled": 58513,
  "ic_fluent_dentist_48_filled": 58514,
  "ic_fluent_dismiss_circle_28_filled": 58574,
  "ic_fluent_doctor_12_filled": 58590,
  "ic_fluent_doctor_16_filled": 58591,
  "ic_fluent_doctor_20_filled": 58592,
  "ic_fluent_doctor_28_filled": 58593,
  "ic_fluent_doctor_48_filled": 58594,
  "ic_fluent_document_16_filled": 58595,
  "ic_fluent_document_48_filled": 58597,
  "ic_fluent_document_add_16_filled": 58598,
  "ic_fluent_document_add_20_filled": 58599,
  "ic_fluent_document_add_24_filled": 58600,
  "ic_fluent_document_add_28_filled": 58601,
  "ic_fluent_document_add_48_filled": 58602,
  "ic_fluent_document_arrow_left_16_filled": 58605,
  "ic_fluent_document_arrow_left_20_filled": 58606,
  "ic_fluent_document_arrow_left_24_filled": 58607,
  "ic_fluent_document_arrow_left_28_filled": 58608,
  "ic_fluent_document_arrow_left_48_filled": 58609,
  "ic_fluent_document_catch_up_16_filled": 58619,
  "ic_fluent_document_catch_up_20_filled": 58620,
  "ic_fluent_document_landscape_data_24_filled": 58651,
  "ic_fluent_document_landscape_split_20_filled": 58652,
  "ic_fluent_document_landscape_split_hint_20_filled": 58654,
  "ic_fluent_document_page_break_20_filled": 58675,
  "ic_fluent_drink_beer_16_filled": 58767,
  "ic_fluent_drink_beer_20_filled": 58768,
  "ic_fluent_drink_coffee_16_filled": 58769,
  "ic_fluent_drink_margarita_16_filled": 58770,
  "ic_fluent_drink_margarita_20_filled": 58771,
  "ic_fluent_drink_wine_16_filled": 58774,
  "ic_fluent_drink_wine_20_filled": 58775,
  "ic_fluent_dual_screen_span_24_filled": 58803,
  "ic_fluent_edit_32_filled": 58816,
  "ic_fluent_edit_off_16_filled": 58819,
  "ic_fluent_edit_off_24_filled": 58821,
  "ic_fluent_edit_settings_24_filled": 58832,
  "ic_fluent_emoji_add_16_filled": 58836,
  "ic_fluent_emoji_hand_24_filled": 58844,
  "ic_fluent_emoji_hand_28_filled": 58845,
  "ic_fluent_eraser_20_filled": 58865,
  "ic_fluent_eraser_24_filled": 58866,
  "ic_fluent_eraser_medium_24_filled": 58868,
  "ic_fluent_eraser_segment_24_filled": 58870,
  "ic_fluent_eraser_small_24_filled": 58872,
  "ic_fluent_error_circle_12_filled": 58874,
  "ic_fluent_eye_tracking_off_16_filled": 58887,
  "ic_fluent_eye_tracking_off_20_filled": 58888,
  "ic_fluent_eye_tracking_off_24_filled": 58889,
  "ic_fluent_f_stop_16_filled": 58894,
  "ic_fluent_f_stop_20_filled": 58895,
  "ic_fluent_f_stop_24_filled": 58896,
  "ic_fluent_f_stop_28_filled": 58897,
  "ic_fluent_fingerprint_48_filled": 58911,
  "ic_fluent_fixed_width_24_filled": 58913,
  "ic_fluent_flip_horizontal_24_filled": 58938,
  "ic_fluent_flip_vertical_24_filled": 58944,
  "ic_fluent_fluent_32_filled": 58955,
  "ic_fluent_fluent_48_filled": 58956,
  "ic_fluent_fluid_20_filled": 58958,
  "ic_fluent_fluid_24_filled": 58959,
  "ic_fluent_food_egg_16_filled": 59001,
  "ic_fluent_food_egg_20_filled": 59002,
  "ic_fluent_food_toast_16_filled": 59007,
  "ic_fluent_food_toast_20_filled": 59008,
  "ic_fluent_gavel_24_filled": 59044,
  "ic_fluent_gavel_32_filled": 59045,
  "ic_fluent_glasses_16_filled": 59062,
  "ic_fluent_glasses_20_filled": 59063,
  "ic_fluent_glasses_28_filled": 59064,
  "ic_fluent_glasses_48_filled": 59065,
  "ic_fluent_glasses_off_16_filled": 59066,
  "ic_fluent_glasses_off_20_filled": 59067,
  "ic_fluent_glasses_off_28_filled": 59068,
  "ic_fluent_glasses_off_48_filled": 59069,
  "ic_fluent_globe_16_filled": 59070,
  "ic_fluent_hand_left_20_filled": 59112,
  "ic_fluent_hand_right_24_filled": 59117,
  "ic_fluent_hand_right_28_filled": 59118,
  "ic_fluent_hat_graduation_16_filled": 59122,
  "ic_fluent_hat_graduation_20_filled": 59123,
  "ic_fluent_hat_graduation_24_filled": 59124,
  "ic_fluent_hd_16_filled": 59125,
  "ic_fluent_hd_20_filled": 59126,
  "ic_fluent_hd_24_filled": 59127,
  "ic_fluent_headset_16_filled": 59139,
  "ic_fluent_headset_20_filled": 59140,
  "ic_fluent_headset_48_filled": 59142,
  "ic_fluent_heart_pulse_24_filled": 59151,
  "ic_fluent_heart_pulse_32_filled": 59152,
  "ic_fluent_home_16_filled": 59164,
  "ic_fluent_home_32_filled": 59165,
  "ic_fluent_home_48_filled": 59166,
  "ic_fluent_image_arrow_counterclockwise_24_filled": 59180,
  "ic_fluent_info_shield_20_filled": 59204,
  "ic_fluent_key_multiple_20_filled": 59219,
  "ic_fluent_line_horizontal_5_error_20_filled": 59259,
  "ic_fluent_link_square_12_filled": 59267,
  "ic_fluent_link_square_16_filled": 59268,
  "ic_fluent_location_48_filled": 59274,
  "ic_fluent_location_off_16_filled": 59286,
  "ic_fluent_location_off_20_filled": 59287,
  "ic_fluent_location_off_24_filled": 59288,
  "ic_fluent_location_off_28_filled": 59289,
  "ic_fluent_location_off_48_filled": 59290,
  "ic_fluent_lock_multiple_24_filled": 59297,
  "ic_fluent_lottery_24_filled": 59303,
  "ic_fluent_mail_16_filled": 59311,
  "ic_fluent_mail_read_16_filled": 59359,
  "ic_fluent_math_format_linear_24_filled": 59372,
  "ic_fluent_math_format_professional_24_filled": 59374,
  "ic_fluent_math_formula_24_filled": 59377,
  "ic_fluent_maximize_20_filled": 59385,
  "ic_fluent_maximize_24_filled": 59386,
  "ic_fluent_maximize_28_filled": 59387,
  "ic_fluent_maximize_48_filled": 59388,
  "ic_fluent_meet_now_16_filled": 59389,
  "ic_fluent_mic_off_20_filled": 59404,
  "ic_fluent_mic_off_48_filled": 59406,
  "ic_fluent_mic_prohibited_24_filled": 59409,
  "ic_fluent_more_circle_20_filled": 59439,
  "ic_fluent_movies_and_tv_16_filled": 59449,
  "ic_fluent_movies_and_tv_20_filled": 59450,
  "ic_fluent_navigation_unread_24_filled": 59505,
  "ic_fluent_number_symbol_dismiss_24_filled": 59545,
  "ic_fluent_open_28_filled": 59548,
  "ic_fluent_open_48_filled": 59549,
  "ic_fluent_open_folder_16_filled": 59550,
  "ic_fluent_open_folder_20_filled": 59551,
  "ic_fluent_open_folder_28_filled": 59552,
  "ic_fluent_open_folder_48_filled": 59553,
  "ic_fluent_open_off_16_filled": 59554,
  "ic_fluent_open_off_20_filled": 59555,
  "ic_fluent_open_off_24_filled": 59556,
  "ic_fluent_open_off_28_filled": 59557,
  "ic_fluent_open_off_48_filled": 59558,
  "ic_fluent_paint_brush_arrow_down_24_filled": 59574,
  "ic_fluent_paint_brush_arrow_up_24_filled": 59576,
  "ic_fluent_pause_12_filled": 59614,
  "ic_fluent_payment_16_filled": 59622,
  "ic_fluent_payment_28_filled": 59623,
  "ic_fluent_people_prohibited_16_filled": 59669,
  "ic_fluent_people_swap_16_filled": 59676,
  "ic_fluent_people_swap_20_filled": 59677,
  "ic_fluent_people_swap_24_filled": 59678,
  "ic_fluent_people_swap_28_filled": 59679,
  "ic_fluent_people_team_add_20_filled": 59683,
  "ic_fluent_people_team_add_24_filled": 59684,
  "ic_fluent_person_available_20_filled": 59702,
  "ic_fluent_person_clock_16_filled": 59708,
  "ic_fluent_person_clock_20_filled": 59709,
  "ic_fluent_person_clock_24_filled": 59710,
  "ic_fluent_person_delete_20_filled": 59711,
  "ic_fluent_person_mail_16_filled": 59721,
  "ic_fluent_person_mail_20_filled": 59722,
  "ic_fluent_person_mail_24_filled": 59723,
  "ic_fluent_person_mail_28_filled": 59724,
  "ic_fluent_person_mail_48_filled": 59725,
  "ic_fluent_person_prohibited_24_filled": 59733,
  "ic_fluent_poll_20_filled": 59825,
  "ic_fluent_pulse_24_filled": 59877,
  "ic_fluent_qr_code_20_filled": 59892,
  "ic_fluent_real_estate_24_filled": 59909,
  "ic_fluent_ribbon_24_filled": 59952,
  "ic_fluent_ribbon_star_20_filled": 59959,
  "ic_fluent_ribbon_star_24_filled": 59960,
  "ic_fluent_run_16_filled": 59975,
  "ic_fluent_run_20_filled": 59976,
  "ic_fluent_scales_24_filled": 59993,
  "ic_fluent_scales_32_filled": 59994,
  "ic_fluent_search_shield_20_filled": 60041,
  "ic_fluent_shield_dismiss_shield_20_filled": 60118,
  "ic_fluent_shifts_day_20_filled": 60140,
  "ic_fluent_shifts_day_24_filled": 60141,
  "ic_fluent_sidebar_search_ltr_20_filled": 60161,
  "ic_fluent_sidebar_search_rtl_20_filled": 60162,
  "ic_fluent_sign_out_20_filled": 60163,
  "ic_fluent_slide_multiple_arrow_right_24_filled": 60200,
  "ic_fluent_slide_search_24_filled": 60202,
  "ic_fluent_slide_search_28_filled": 60203,
  "ic_fluent_slide_size_24_filled": 60207,
  "ic_fluent_slide_text_16_filled": 60208,
  "ic_fluent_slide_text_20_filled": 60209,
  "ic_fluent_slide_text_28_filled": 60210,
  "ic_fluent_slide_text_48_filled": 60211,
  "ic_fluent_speaker_0_16_filled": 60224,
  "ic_fluent_speaker_0_20_filled": 60225,
  "ic_fluent_speaker_0_28_filled": 60226,
  "ic_fluent_speaker_0_48_filled": 60228,
  "ic_fluent_speaker_1_16_filled": 60229,
  "ic_fluent_speaker_1_20_filled": 60230,
  "ic_fluent_speaker_1_28_filled": 60231,
  "ic_fluent_speaker_1_48_filled": 60233,
  "ic_fluent_speaker_bluetooth_28_filled": 60241,
  "ic_fluent_speaker_off_16_filled": 60247,
  "ic_fluent_speaker_off_20_filled": 60248,
  "ic_fluent_speaker_off_48_filled": 60249,
  "ic_fluent_speaker_usb_24_filled": 60253,
  "ic_fluent_speaker_usb_28_filled": 60254,
  "ic_fluent_sport_16_filled": 60270,
  "ic_fluent_sport_20_filled": 60271,
  "ic_fluent_sport_24_filled": 60272,
  "ic_fluent_sport_american_football_24_filled": 60274,
  "ic_fluent_sport_baseball_24_filled": 60276,
  "ic_fluent_sport_basketball_24_filled": 60278,
  "ic_fluent_sport_hockey_24_filled": 60280,
  "ic_fluent_star_edit_24_filled": 60338,
  "ic_fluent_tab_desktop_arrow_left_20_filled": 60389,
  "ic_fluent_tab_prohibited_24_filled": 60395,
  "ic_fluent_table_16_filled": 60398,
  "ic_fluent_table_28_filled": 60399,
  "ic_fluent_table_48_filled": 60401,
  "ic_fluent_table_simple_16_filled": 60490,
  "ic_fluent_table_simple_20_filled": 60491,
  "ic_fluent_table_simple_24_filled": 60492,
  "ic_fluent_table_simple_28_filled": 60493,
  "ic_fluent_table_simple_48_filled": 60494,
  "ic_fluent_tag_16_filled": 60522,
  "ic_fluent_tasks_app_20_filled": 60573,
  "ic_fluent_tent_12_filled": 60576,
  "ic_fluent_tent_16_filled": 60577,
  "ic_fluent_tent_20_filled": 60578,
  "ic_fluent_tent_28_filled": 60579,
  "ic_fluent_tent_48_filled": 60580,
  "ic_fluent_text_bold_16_filled": 60624,
  "ic_fluent_text_color_16_filled": 60659,
  "ic_fluent_text_column_one_narrow_20_filled": 60663,
  "ic_fluent_text_column_one_narrow_24_filled": 60664,
  "ic_fluent_text_column_one_wide_20_filled": 60665,
  "ic_fluent_text_column_one_wide_24_filled": 60666,
  "ic_fluent_text_continuous_24_filled": 60670,
  "ic_fluent_text_italic_16_filled": 60727,
  "ic_fluent_text_underline_16_filled": 60775,
  "ic_fluent_ticket_diagonal_16_filled": 60795,
  "ic_fluent_ticket_diagonal_20_filled": 60796,
  "ic_fluent_ticket_diagonal_24_filled": 60797,
  "ic_fluent_ticket_diagonal_28_filled": 60798,
  "ic_fluent_timer_16_filled": 60806,
  "ic_fluent_timer_20_filled": 60808,
  "ic_fluent_toggle_left_16_filled": 60815,
  "ic_fluent_toggle_left_20_filled": 60816,
  "ic_fluent_toggle_left_24_filled": 60817,
  "ic_fluent_toggle_left_28_filled": 60818,
  "ic_fluent_toggle_left_48_filled": 60819,
  "ic_fluent_toggle_right_28_filled": 60823,
  "ic_fluent_toggle_right_48_filled": 60824,
  "ic_fluent_tv_16_filled": 60865,
  "ic_fluent_tv_20_filled": 60866,
  "ic_fluent_tv_24_filled": 60867,
  "ic_fluent_tv_28_filled": 60868,
  "ic_fluent_tv_48_filled": 60869,
  "ic_fluent_vehicle_bicycle_16_filled": 60881,
  "ic_fluent_vehicle_bicycle_20_filled": 60882,
  "ic_fluent_vehicle_bus_16_filled": 60883,
  "ic_fluent_vehicle_bus_20_filled": 60884,
  "ic_fluent_vehicle_car_28_filled": 60888,
  "ic_fluent_vehicle_car_48_filled": 60889,
  "ic_fluent_vehicle_ship_16_filled": 60898,
  "ic_fluent_vehicle_ship_20_filled": 60899,
  "ic_fluent_vehicle_ship_24_filled": 60900,
  "ic_fluent_vehicle_subway_16_filled": 60901,
  "ic_fluent_vehicle_subway_20_filled": 60902,
  "ic_fluent_vehicle_subway_24_filled": 60903,
  "ic_fluent_vehicle_truck_16_filled": 60904,
  "ic_fluent_vehicle_truck_20_filled": 60905,
  "ic_fluent_video_clip_20_filled": 60927,
  "ic_fluent_vote_20_filled": 60968,
  "ic_fluent_vote_24_filled": 60969,
  "ic_fluent_weather_drizzle_20_filled": 60990,
  "ic_fluent_weather_drizzle_24_filled": 60991,
  "ic_fluent_weather_drizzle_48_filled": 60992,
  "ic_fluent_weather_haze_20_filled": 60993,
  "ic_fluent_weather_haze_24_filled": 60994,
  "ic_fluent_weather_haze_48_filled": 60995,
  "ic_fluent_weather_moon_16_filled": 60996,
  "ic_fluent_weather_moon_28_filled": 60997,
  "ic_fluent_weather_moon_off_16_filled": 60998,
  "ic_fluent_weather_moon_off_20_filled": 60999,
  "ic_fluent_weather_moon_off_24_filled": 61000,
  "ic_fluent_weather_moon_off_28_filled": 61001,
  "ic_fluent_weather_moon_off_48_filled": 61002,
  "ic_fluent_weather_sunny_high_20_filled": 61007,
  "ic_fluent_weather_sunny_high_24_filled": 61008,
  "ic_fluent_weather_sunny_high_48_filled": 61009,
  "ic_fluent_weather_sunny_low_20_filled": 61010,
  "ic_fluent_weather_sunny_low_24_filled": 61011,
  "ic_fluent_weather_sunny_low_48_filled": 61012,
  "ic_fluent_window_new_16_filled": 61050,
  "ic_fluent_window_new_24_filled": 61051,
  "ic_fluent_wrench_16_filled": 61061,
  "ic_fluent_wrench_20_filled": 61062,
  "ic_fluent_video_background_effect_20_filled": 60919,
  "ic_fluent_alert_16_filled": 57364,
  "ic_fluent_approvals_app_16_filled": 57439,
  "ic_fluent_approvals_app_20_filled": 57440,
  "ic_fluent_arrow_bounce_16_filled": 57478,
  "ic_fluent_arrow_bounce_24_filled": 57480,
  "ic_fluent_arrow_enter_up_20_filled": 57538,
  "ic_fluent_arrow_enter_up_24_filled": 57539,
  "ic_fluent_bookmark_multiple_20_filled": 57767,
  "ic_fluent_briefcase_28_filled": 57854,
  "ic_fluent_briefcase_48_filled": 57856,
  "ic_fluent_building_20_filled": 57887,
  "ic_fluent_chat_48_filled": 58106,
  "ic_fluent_desktop_arrow_right_16_filled": 58516,
  "ic_fluent_desktop_arrow_right_20_filled": 58517,
  "ic_fluent_desktop_arrow_right_24_filled": 58518,
  "ic_fluent_desktop_speaker_20_filled": 58544,
  "ic_fluent_desktop_speaker_24_filled": 58545,
  "ic_fluent_desktop_speaker_off_20_filled": 58546,
  "ic_fluent_desktop_speaker_off_24_filled": 58547,
  "ic_fluent_emoji_add_20_filled": 58837,
  "ic_fluent_food_cake_20_filled": 59000,
  "ic_fluent_grid_kanban_20_filled": 59092,
  "ic_fluent_hand_right_20_filled": 59116,
  "ic_fluent_hand_right_off_20_filled": 59119,
  "ic_fluent_learning_app_20_filled": 59245,
  "ic_fluent_learning_app_24_filled": 59246,
  "ic_fluent_live_off_20_filled": 59272,
  "ic_fluent_live_off_24_filled": 59273,
  "ic_fluent_mic_prohibited_20_filled": 59408,
  "ic_fluent_notebook_section_20_filled": 59527,
  "ic_fluent_people_audience_20_filled": 59649,
  "ic_fluent_people_call_16_filled": 59650,
  "ic_fluent_people_call_20_filled": 59651,
  "ic_fluent_person_call_16_filled": 59703,
  "ic_fluent_person_call_20_filled": 59704,
  "ic_fluent_phone_desktop_add_20_filled": 59755,
  "ic_fluent_presenter_20_filled": 59855,
  "ic_fluent_presenter_off_20_filled": 59856,
  "ic_fluent_rectangle_landscape_20_filled": 59921,
  "ic_fluent_ribbon_20_filled": 59951,
  "ic_fluent_save_sync_20_filled": 59990,
  "ic_fluent_shifts_20_filled": 60133,
  "ic_fluent_shifts_checkmark_20_filled": 60138,
  "ic_fluent_shifts_checkmark_24_filled": 60139,
  "ic_fluent_slide_multiple_24_filled": 60198,
  "ic_fluent_star_line_horizontal_3_20_filled": 60342,
  "ic_fluent_star_line_horizontal_3_24_filled": 60343,
  "ic_fluent_table_add_20_filled": 60403,
  "ic_fluent_table_dismiss_20_filled": 60430,
  "ic_fluent_table_dismiss_24_filled": 60431,
  "ic_fluent_tap_double_20_filled": 60552,
  "ic_fluent_tap_single_20_filled": 60555,
  "ic_fluent_text_bullet_list_add_20_filled": 60627,
  "ic_fluent_text_bullet_list_square_20_filled": 60640,
  "ic_fluent_text_grammar_error_20_filled": 60698,
  "ic_fluent_text_number_list_rtl_20_filled": 60736,
  "ic_fluent_video_360_20_filled": 60913,
  "ic_fluent_video_360_24_filled": 60914,
  "ic_fluent_video_person_12_filled": 60936,
  "ic_fluent_video_person_16_filled": 60937,
  "ic_fluent_video_person_20_filled": 60938,
  "ic_fluent_video_person_28_filled": 60939,
  "ic_fluent_video_person_48_filled": 60940,
  "ic_fluent_video_person_call_16_filled": 60941,
  "ic_fluent_video_person_call_20_filled": 60942,
  "ic_fluent_video_person_call_24_filled": 60943,
  "ic_fluent_video_person_star_20_filled": 60951,
  "ic_fluent_video_prohibited_20_filled": 60956,
  "ic_fluent_video_switch_20_filled": 60960,
  "ic_fluent_wifi_warning_20_filled": 61020,
  "ic_fluent_album_24_filled": 57360,
  "ic_fluent_album_add_24_filled": 57362,
  "ic_fluent_alert_urgent_16_filled": 57373,
  "ic_fluent_arrow_right_16_filled": 57579,
  "ic_fluent_arrow_undo_16_filled": 57638,
  "ic_fluent_arrow_up_left_16_filled": 57643,
  "ic_fluent_arrow_up_left_20_filled": 57644,
  "ic_fluent_backpack_add_20_filled": 57671,
  "ic_fluent_backpack_add_24_filled": 57672,
  "ic_fluent_backpack_add_28_filled": 57673,
  "ic_fluent_backpack_add_48_filled": 57674,
  "ic_fluent_bot_20_filled": 57804,
  "ic_fluent_call_connecting_20_filled": 57996,
  "ic_fluent_call_exclamation_20_filled": 57999,
  "ic_fluent_call_transfer_20_filled": 58023,
  "ic_fluent_camera_off_24_filled": 58037,
  "ic_fluent_chat_bubbles_question_20_filled": 58111,
  "ic_fluent_chat_mail_20_filled": 58115,
  "ic_fluent_chat_off_20_filled": 58116,
  "ic_fluent_checkmark_48_filled": 58138,
  "ic_fluent_cloud_sync_20_filled": 58307,
  "ic_fluent_content_view_20_filled": 58404,
  "ic_fluent_cube_rotate_20_filled": 58436,
  "ic_fluent_data_line_20_filled": 58468,
  "ic_fluent_device_meeting_room_20_filled": 58558,
  "ic_fluent_device_meeting_room_remote_20_filled": 58559,
  "ic_fluent_draw_shape_24_filled": 58754,
  "ic_fluent_draw_text_24_filled": 58756,
  "ic_fluent_folder_arrow_up_16_filled": 58973,
  "ic_fluent_folder_arrow_up_20_filled": 58974,
  "ic_fluent_folder_arrow_up_24_filled": 58975,
  "ic_fluent_folder_arrow_up_28_filled": 58976,
  "ic_fluent_fps_30_16_filled": 59013,
  "ic_fluent_fps_30_20_filled": 59014,
  "ic_fluent_fps_30_24_filled": 59015,
  "ic_fluent_fps_30_28_filled": 59016,
  "ic_fluent_fps_30_48_filled": 59017,
  "ic_fluent_fps_60_16_filled": 59018,
  "ic_fluent_fps_60_20_filled": 59019,
  "ic_fluent_fps_60_24_filled": 59020,
  "ic_fluent_fps_60_28_filled": 59021,
  "ic_fluent_fps_60_48_filled": 59022,
  "ic_fluent_home_person_20_filled": 59172,
  "ic_fluent_image_off_20_filled": 59193,
  "ic_fluent_lasso_20_filled": 59236,
  "ic_fluent_leaf_three_16_filled": 59242,
  "ic_fluent_leaf_three_20_filled": 59243,
  "ic_fluent_leaf_three_24_filled": 59244,
  "ic_fluent_mic_sync_20_filled": 59428,
  "ic_fluent_notebook_subsection_20_filled": 59529,
  "ic_fluent_person_circle_20_filled": 59706,
  "ic_fluent_pulse_20_filled": 59876,
  "ic_fluent_pulse_square_24_filled": 59881,
  "ic_fluent_ribbon_16_filled": 59950,
  "ic_fluent_rotate_left_24_filled": 59968,
  "ic_fluent_rotate_right_20_filled": 59969,
  "ic_fluent_rotate_right_24_filled": 59970,
  "ic_fluent_share_close_tray_20_filled": 60082,
  "ic_fluent_square_multiple_20_filled": 60319,
  "ic_fluent_star_emphasis_20_filled": 60339,
  "ic_fluent_tv_arrow_right_20_filled": 60870,
  "ic_fluent_video_person_star_off_20_filled": 60952,
  "ic_fluent_video_recording_20_filled": 60959,
  "ic_fluent_video_sync_20_filled": 60961,
  "ic_fluent_breakout_room_20_filled": 57849,
  "ic_fluent_content_view_gallery_20_filled": 58406,
  "ic_fluent_door_tag_24_filled": 58743,
  "ic_fluent_luggage_24_filled": 59306,
  "ic_fluent_people_edit_20_filled": 59657,
  "ic_fluent_channel_share_12_filled": 58086,
  "ic_fluent_channel_share_16_filled": 58087,
  "ic_fluent_channel_share_20_filled": 58088,
  "ic_fluent_channel_share_24_filled": 58089,
  "ic_fluent_channel_share_28_filled": 58090,
  "ic_fluent_channel_share_48_filled": 58091,
  "ic_fluent_people_error_16_filled": 59658,
  "ic_fluent_people_error_20_filled": 59659,
  "ic_fluent_people_error_24_filled": 59660,
  "ic_fluent_puzzle_cube_16_filled": 59882,
  "ic_fluent_puzzle_cube_20_filled": 59883,
  "ic_fluent_puzzle_cube_24_filled": 59884,
  "ic_fluent_puzzle_cube_28_filled": 59885,
  "ic_fluent_puzzle_cube_48_filled": 59886,
  "ic_fluent_arrow_circle_down_right_16_filled": 57486,
  "ic_fluent_arrow_circle_down_right_24_filled": 57488,
  "ic_fluent_arrow_circle_right_24_filled": 57500,
  "ic_fluent_arrow_circle_up_16_filled": 57505,
  "ic_fluent_arrow_circle_up_20_filled": 57506,
  "ic_fluent_arrow_circle_up_24_filled": 57507,
  "ic_fluent_arrow_circle_up_left_24_filled": 57512,
  "ic_fluent_arrow_enter_left_20_filled": 57536,
  "ic_fluent_arrow_enter_left_24_filled": 57537,
  "ic_fluent_arrow_export_ltr_20_filled": 57543,
  "ic_fluent_arrow_export_ltr_24_filled": 57544,
  "ic_fluent_arrow_square_down_24_filled": 57591,
  "ic_fluent_arrow_undo_32_filled": 57640,
  "ic_fluent_arrow_undo_48_filled": 57641,
  "ic_fluent_auto_fit_height_24_filled": 57660,
  "ic_fluent_auto_fit_width_24_filled": 57662,
  "ic_fluent_briefcase_medical_24_filled": 57858,
  "ic_fluent_briefcase_medical_32_filled": 57859,
  "ic_fluent_building_factory_24_filled": 57900,
  "ic_fluent_calendar_arrow_down_24_filled": 57936,
  "ic_fluent_call_16_filled": 57987,
  "ic_fluent_call_20_filled": 57988,
  "ic_fluent_call_24_filled": 57989,
  "ic_fluent_call_28_filled": 57990,
  "ic_fluent_call_missed_20_filled": 58007,
  "ic_fluent_call_prohibited_16_filled": 58017,
  "ic_fluent_call_prohibited_20_filled": 58018,
  "ic_fluent_call_prohibited_24_filled": 58019,
  "ic_fluent_call_prohibited_28_filled": 58020,
  "ic_fluent_call_prohibited_48_filled": 58021,
  "ic_fluent_center_horizontal_24_filled": 58061,
  "ic_fluent_center_vertical_24_filled": 58063,
  "ic_fluent_chevron_circle_down_24_filled": 58149,
  "ic_fluent_chevron_circle_right_24_filled": 58163,
  "ic_fluent_clipboard_image_24_filled": 58220,
  "ic_fluent_comment_arrow_left_24_filled": 58346,
  "ic_fluent_comment_arrow_right_24_filled": 58352,
  "ic_fluent_comment_dismiss_24_filled": 58362,
  "ic_fluent_component_2_double_tap_swipe_down_24_filled": 58387,
  "ic_fluent_component_2_double_tap_swipe_up_24_filled": 58388,
  "ic_fluent_copy_arrow_right_16_filled": 58413,
  "ic_fluent_copy_arrow_right_24_filled": 58415,
  "ic_fluent_currency_dollar_euro_16_filled": 58441,
  "ic_fluent_currency_dollar_euro_20_filled": 58442,
  "ic_fluent_currency_dollar_euro_24_filled": 58443,
  "ic_fluent_delete_dismiss_24_filled": 58507,
  "ic_fluent_delete_dismiss_28_filled": 58508,
  "ic_fluent_document_prohibited_20_filled": 58682,
  "ic_fluent_document_prohibited_24_filled": 58683,
  "ic_fluent_document_sync_24_filled": 58709,
  "ic_fluent_drink_to_go_24_filled": 58773,
  "ic_fluent_dual_screen_header_24_filled": 58797,
  "ic_fluent_fluent_24_filled": 58954,
  "ic_fluent_folder_arrow_right_16_filled": 58968,
  "ic_fluent_folder_arrow_right_20_filled": 58969,
  "ic_fluent_folder_arrow_right_24_filled": 58970,
  "ic_fluent_folder_arrow_right_28_filled": 58971,
  "ic_fluent_folder_arrow_right_48_filled": 58972,
  "ic_fluent_folder_arrow_up_48_filled": 58977,
  "ic_fluent_folder_prohibited_20_filled": 58985,
  "ic_fluent_folder_prohibited_24_filled": 58986,
  "ic_fluent_folder_prohibited_28_filled": 58987,
  "ic_fluent_folder_prohibited_48_filled": 58988,
  "ic_fluent_folder_swap_16_filled": 58989,
  "ic_fluent_folder_swap_20_filled": 58990,
  "ic_fluent_folder_swap_24_filled": 58991,
  "ic_fluent_full_screen_maximize_24_filled": 59026,
  "ic_fluent_full_screen_minimize_24_filled": 59029,
  "ic_fluent_image_multiple_20_filled": 59186,
  "ic_fluent_image_multiple_24_filled": 59187,
  "ic_fluent_image_multiple_28_filled": 59188,
  "ic_fluent_leaf_one_16_filled": 59239,
  "ic_fluent_leaf_one_20_filled": 59240,
  "ic_fluent_leaf_one_24_filled": 59241,
  "ic_fluent_link_dismiss_20_filled": 59265,
  "ic_fluent_location_dismiss_24_filled": 59285,
  "ic_fluent_lock_closed_12_filled": 59291,
  "ic_fluent_lock_closed_16_filled": 59292,
  "ic_fluent_lock_closed_20_filled": 59293,
  "ic_fluent_lock_closed_24_filled": 59294,
  "ic_fluent_lock_open_20_filled": 59299,
  "ic_fluent_lock_open_24_filled": 59300,
  "ic_fluent_lock_open_28_filled": 59301,
  "ic_fluent_mail_inbox_all_24_filled": 59333,
  "ic_fluent_mail_inbox_arrow_right_24_filled": 59336,
  "ic_fluent_mail_inbox_arrow_up_20_filled": 59337,
  "ic_fluent_mail_inbox_arrow_up_24_filled": 59338,
  "ic_fluent_mail_off_24_filled": 59352,
  "ic_fluent_more_horizontal_16_filled": 59441,
  "ic_fluent_more_horizontal_20_filled": 59442,
  "ic_fluent_more_horizontal_24_filled": 59443,
  "ic_fluent_more_horizontal_28_filled": 59444,
  "ic_fluent_more_horizontal_48_filled": 59446,
  "ic_fluent_music_note_1_20_filled": 59487,
  "ic_fluent_music_note_1_24_filled": 59488,
  "ic_fluent_music_note_2_16_filled": 59489,
  "ic_fluent_music_note_2_24_filled": 59491,
  "ic_fluent_people_team_delete_24_filled": 59687,
  "ic_fluent_phone_add_24_filled": 59751,
  "ic_fluent_phone_arrow_right_20_filled": 59752,
  "ic_fluent_phone_arrow_right_24_filled": 59753,
  "ic_fluent_phone_dismiss_24_filled": 59757,
  "ic_fluent_phone_lock_24_filled": 59766,
  "ic_fluent_phone_span_in_16_filled": 59771,
  "ic_fluent_phone_span_in_20_filled": 59772,
  "ic_fluent_phone_span_in_24_filled": 59773,
  "ic_fluent_phone_span_in_28_filled": 59774,
  "ic_fluent_phone_span_out_16_filled": 59775,
  "ic_fluent_phone_span_out_20_filled": 59776,
  "ic_fluent_phone_span_out_24_filled": 59777,
  "ic_fluent_phone_span_out_28_filled": 59778,
  "ic_fluent_position_backward_20_filled": 59834,
  "ic_fluent_position_backward_24_filled": 59835,
  "ic_fluent_position_forward_20_filled": 59836,
  "ic_fluent_position_forward_24_filled": 59837,
  "ic_fluent_position_to_back_20_filled": 59838,
  "ic_fluent_position_to_back_24_filled": 59839,
  "ic_fluent_position_to_front_20_filled": 59840,
  "ic_fluent_position_to_front_24_filled": 59841,
  "ic_fluent_resize_large_16_filled": 59933,
  "ic_fluent_resize_large_20_filled": 59934,
  "ic_fluent_resize_large_24_filled": 59935,
  "ic_fluent_resize_small_16_filled": 59936,
  "ic_fluent_resize_small_20_filled": 59937,
  "ic_fluent_resize_small_24_filled": 59938,
  "ic_fluent_save_edit_20_filled": 59984,
  "ic_fluent_save_edit_24_filled": 59985,
  "ic_fluent_search_info_20_filled": 60039,
  "ic_fluent_search_visual_16_filled": 60043,
  "ic_fluent_search_visual_20_filled": 60044,
  "ic_fluent_search_visual_24_filled": 60045,
  "ic_fluent_select_all_on_24_filled": 60048,
  "ic_fluent_share_screen_start_20_filled": 60099,
  "ic_fluent_share_screen_start_24_filled": 60100,
  "ic_fluent_share_screen_start_28_filled": 60101,
  "ic_fluent_share_screen_stop_16_filled": 60103,
  "ic_fluent_share_screen_stop_20_filled": 60104,
  "ic_fluent_share_screen_stop_24_filled": 60105,
  "ic_fluent_share_screen_stop_28_filled": 60106,
  "ic_fluent_share_screen_stop_48_filled": 60107,
  "ic_fluent_shield_dismiss_16_filled": 60117,
  "ic_fluent_shifts_prohibited_24_filled": 60143,
  "ic_fluent_shifts_question_mark_24_filled": 60145,
  "ic_fluent_speaker_2_16_filled": 60234,
  "ic_fluent_speaker_2_20_filled": 60235,
  "ic_fluent_speaker_2_24_filled": 60236,
  "ic_fluent_speaker_2_28_filled": 60237,
  "ic_fluent_speaker_2_48_filled": 60239,
  "ic_fluent_speaker_mute_16_filled": 60242,
  "ic_fluent_speaker_mute_20_filled": 60243,
  "ic_fluent_speaker_mute_24_filled": 60244,
  "ic_fluent_speaker_mute_28_filled": 60245,
  "ic_fluent_speaker_mute_48_filled": 60246,
  "ic_fluent_star_arrow_right_end_24_filled": 60331,
  "ic_fluent_subtract_12_filled": 60360,
  "ic_fluent_subtract_16_filled": 60361,
  "ic_fluent_subtract_20_filled": 60362,
  "ic_fluent_subtract_24_filled": 60363,
  "ic_fluent_subtract_28_filled": 60364,
  "ic_fluent_subtract_48_filled": 60365,
  "ic_fluent_tab_add_20_filled": 60383,
  "ic_fluent_tab_add_24_filled": 60384,
  "ic_fluent_tab_arrow_left_24_filled": 60386,
  "ic_fluent_tab_shield_dismiss_20_filled": 60396,
  "ic_fluent_tab_shield_dismiss_24_filled": 60397,
  "ic_fluent_table_delete_column_24_filled": 60423,
  "ic_fluent_table_delete_row_24_filled": 60427,
  "ic_fluent_table_freeze_column_and_row_24_filled": 60441,
  "ic_fluent_table_insert_column_24_filled": 60449,
  "ic_fluent_table_insert_row_24_filled": 60453,
  "ic_fluent_table_move_above_24_filled": 60465,
  "ic_fluent_table_move_below_24_filled": 60469,
  "ic_fluent_table_resize_column_24_filled": 60480,
  "ic_fluent_table_resize_row_24_filled": 60484,
  "ic_fluent_table_stack_above_24_filled": 60498,
  "ic_fluent_table_stack_below_24_filled": 60502,
  "ic_fluent_table_stack_left_24_filled": 60506,
  "ic_fluent_table_stack_right_24_filled": 60510,
  "ic_fluent_tag_question_mark_16_filled": 60544,
  "ic_fluent_tag_question_mark_24_filled": 60546,
  "ic_fluent_text_grammar_arrow_left_20_filled": 60690,
  "ic_fluent_text_grammar_arrow_left_24_filled": 60691,
  "ic_fluent_text_grammar_arrow_right_20_filled": 60692,
  "ic_fluent_text_grammar_arrow_right_24_filled": 60693,
  "ic_fluent_text_grammar_checkmark_20_filled": 60694,
  "ic_fluent_text_grammar_checkmark_24_filled": 60695,
  "ic_fluent_text_grammar_dismiss_20_filled": 60696,
  "ic_fluent_text_grammar_dismiss_24_filled": 60697,
  "ic_fluent_text_grammar_settings_20_filled": 60699,
  "ic_fluent_text_grammar_settings_24_filled": 60700,
  "ic_fluent_text_grammar_wand_16_filled": 60701,
  "ic_fluent_text_grammar_wand_20_filled": 60702,
  "ic_fluent_text_grammar_wand_24_filled": 60703,
  "ic_fluent_text_paragraph_20_filled": 60738,
  "ic_fluent_text_paragraph_24_filled": 60739,
  "ic_fluent_text_paragraph_direction_20_filled": 60740,
  "ic_fluent_text_paragraph_direction_24_filled": 60741,
  "ic_fluent_text_position_behind_20_filled": 60747,
  "ic_fluent_text_position_behind_24_filled": 60748,
  "ic_fluent_text_position_front_20_filled": 60749,
  "ic_fluent_text_position_front_24_filled": 60750,
  "ic_fluent_text_position_line_20_filled": 60751,
  "ic_fluent_text_position_line_24_filled": 60752,
  "ic_fluent_text_position_square_20_filled": 60753,
  "ic_fluent_text_position_square_24_filled": 60754,
  "ic_fluent_text_position_through_20_filled": 60755,
  "ic_fluent_text_position_through_24_filled": 60756,
  "ic_fluent_text_position_tight_20_filled": 60757,
  "ic_fluent_text_position_tight_24_filled": 60758,
  "ic_fluent_text_position_top_bottom_20_filled": 60759,
  "ic_fluent_text_position_top_bottom_24_filled": 60760,
  "ic_fluent_textbox_align_center_20_filled": 60781,
  "ic_fluent_textbox_align_center_24_filled": 60782,
  "ic_fluent_thumb_like_16_filled": 60792,
  "ic_fluent_ticket_horizontal_20_filled": 60799,
  "ic_fluent_ticket_horizontal_24_filled": 60800,
  "ic_fluent_wand_16_filled": 60982,
  "ic_fluent_wand_20_filled": 60983,
  "ic_fluent_wand_24_filled": 60984,
  "ic_fluent_wand_28_filled": 60985,
  "ic_fluent_wand_48_filled": 60986,
  "ic_fluent_window_arrow_up_24_filled": 61036,
  "ic_fluent_window_header_horizontal_20_filled": 61044,
  "ic_fluent_window_header_vertical_20_filled": 61046,
  "ic_fluent_accessibility_32_filled": 57345,
  "ic_fluent_accessibility_checkmark_24_filled": 57348,
  "ic_fluent_add_circle_16_filled": 57349,
  "ic_fluent_add_circle_32_filled": 57350,
  "ic_fluent_animal_rabbit_16_filled": 57424,
  "ic_fluent_animal_rabbit_20_filled": 57425,
  "ic_fluent_animal_rabbit_24_filled": 57426,
  "ic_fluent_animal_rabbit_28_filled": 57427,
  "ic_fluent_animal_turtle_16_filled": 57428,
  "ic_fluent_animal_turtle_20_filled": 57429,
  "ic_fluent_animal_turtle_24_filled": 57430,
  "ic_fluent_animal_turtle_28_filled": 57431,
  "ic_fluent_book_contacts_20_filled": 57726,
  "ic_fluent_book_contacts_24_filled": 57727,
  "ic_fluent_book_contacts_28_filled": 57728,
  "ic_fluent_book_open_globe_20_filled": 57745,
  "ic_fluent_calligraphy_pen_checkmark_20_filled": 58026,
  "ic_fluent_calligraphy_pen_question_mark_20_filled": 58028,
  "ic_fluent_cellular_5g_24_filled": 58055,
  "ic_fluent_checkbox_1_24_filled": 58123,
  "ic_fluent_checkbox_2_24_filled": 58125,
  "ic_fluent_checkbox_arrow_right_24_filled": 58127,
  "ic_fluent_checkbox_person_24_filled": 58134,
  "ic_fluent_checkbox_warning_24_filled": 58136,
  "ic_fluent_circle_edit_24_filled": 58186,
  "ic_fluent_clock_32_filled": 58243,
  "ic_fluent_cloud_16_filled": 58263,
  "ic_fluent_cloud_32_filled": 58265,
  "ic_fluent_comment_note_24_filled": 58379,
  "ic_fluent_content_settings_32_filled": 58403,
  "ic_fluent_desktop_mac_16_filled": 58532,
  "ic_fluent_desktop_mac_32_filled": 58535,
  "ic_fluent_document_arrow_right_24_filled": 58611,
  "ic_fluent_document_checkmark_24_filled": 58622,
  "ic_fluent_dual_screen_dismiss_24_filled": 58794,
  "ic_fluent_dual_screen_speaker_24_filled": 58805,
  "ic_fluent_filter_dismiss_24_filled": 58907,
  "ic_fluent_filter_sync_24_filled": 58909,
  "ic_fluent_folder_16_filled": 58960,
  "ic_fluent_folder_32_filled": 58961,
  "ic_fluent_globe_person_24_filled": 59077,
  "ic_fluent_home_person_24_filled": 59173,
  "ic_fluent_image_globe_24_filled": 59184,
  "ic_fluent_inking_tool_32_filled": 59207,
  "ic_fluent_key_16_filled": 59214,
  "ic_fluent_key_32_filled": 59215,
  "ic_fluent_line_style_24_filled": 59261,
  "ic_fluent_math_formula_16_filled": 59375,
  "ic_fluent_math_formula_32_filled": 59378,
  "ic_fluent_notebook_add_24_filled": 59521,
  "ic_fluent_notebook_section_arrow_right_24_filled": 59528,
  "ic_fluent_notebook_subsection_24_filled": 59530,
  "ic_fluent_orientation_20_filled": 59565,
  "ic_fluent_people_32_filled": 59646,
  "ic_fluent_person_note_24_filled": 59729,
  "ic_fluent_phone_laptop_16_filled": 59762,
  "ic_fluent_phone_laptop_32_filled": 59763,
  "ic_fluent_phone_speaker_24_filled": 59780,
  "ic_fluent_pi_24_filled": 59789,
  "ic_fluent_premium_32_filled": 59843,
  "ic_fluent_receipt_20_filled": 59910,
  "ic_fluent_receipt_24_filled": 59911,
  "ic_fluent_rss_24_filled": 59974,
  "ic_fluent_screen_cut_20_filled": 60031,
  "ic_fluent_screen_person_20_filled": 60032,
  "ic_fluent_shape_exclude_16_filled": 60065,
  "ic_fluent_shape_exclude_20_filled": 60066,
  "ic_fluent_shape_exclude_24_filled": 60067,
  "ic_fluent_shape_intersect_16_filled": 60068,
  "ic_fluent_shape_intersect_20_filled": 60069,
  "ic_fluent_shape_intersect_24_filled": 60070,
  "ic_fluent_shape_subtract_16_filled": 60071,
  "ic_fluent_shape_subtract_20_filled": 60072,
  "ic_fluent_shape_subtract_24_filled": 60073,
  "ic_fluent_shape_union_16_filled": 60074,
  "ic_fluent_shape_union_20_filled": 60075,
  "ic_fluent_shape_union_24_filled": 60076,
  "ic_fluent_shifts_16_filled": 60132,
  "ic_fluent_slide_settings_24_filled": 60205,
  "ic_fluent_slide_transition_24_filled": 60213,
  "ic_fluent_star_emphasis_32_filled": 60340,
  "ic_fluent_table_32_filled": 60400,
  "ic_fluent_table_cell_edit_24_filled": 60413,
  "ic_fluent_tablet_speaker_24_filled": 60520,
  "ic_fluent_target_32_filled": 60558,
  "ic_fluent_timer_3_24_filled": 60811,
  "ic_fluent_voicemail_28_filled": 60964,
  "ic_fluent_walkie_talkie_20_filled": 60970,
  "ic_fluent_warning_shield_20_filled": 60989,
  "ic_fluent_add_subtract_circle_16_filled": 57354,
  "ic_fluent_add_subtract_circle_20_filled": 57355,
  "ic_fluent_add_subtract_circle_24_filled": 57356,
  "ic_fluent_add_subtract_circle_28_filled": 57357,
  "ic_fluent_add_subtract_circle_48_filled": 57358,
  "ic_fluent_beach_16_filled": 57683,
  "ic_fluent_beach_20_filled": 57684,
  "ic_fluent_beach_24_filled": 57685,
  "ic_fluent_beach_28_filled": 57686,
  "ic_fluent_building_16_filled": 57886,
  "ic_fluent_calendar_edit_16_filled": 57945,
  "ic_fluent_calendar_edit_20_filled": 57946,
  "ic_fluent_calendar_edit_24_filled": 57947,
  "ic_fluent_calendar_ltr_20_filled": 57954,
  "ic_fluent_calendar_ltr_24_filled": 57955,
  "ic_fluent_calendar_ltr_28_filled": 57956,
  "ic_fluent_calendar_rtl_20_filled": 57975,
  "ic_fluent_calendar_rtl_24_filled": 57976,
  "ic_fluent_calendar_rtl_28_filled": 57977,
  "ic_fluent_circle_small_20_filled": 58195,
  "ic_fluent_clipboard_16_filled": 58199,
  "ic_fluent_clipboard_arrow_right_16_filled": 58201,
  "ic_fluent_clipboard_arrow_right_20_filled": 58202,
  "ic_fluent_clipboard_arrow_right_24_filled": 58203,
  "ic_fluent_clipboard_text_ltr_20_filled": 58238,
  "ic_fluent_clipboard_text_ltr_24_filled": 58239,
  "ic_fluent_clipboard_text_rtl_20_filled": 58241,
  "ic_fluent_clipboard_text_rtl_24_filled": 58242,
  "ic_fluent_cube_sync_24_filled": 58438,
  "ic_fluent_document_question_mark_16_filled": 58684,
  "ic_fluent_document_question_mark_20_filled": 58685,
  "ic_fluent_document_question_mark_24_filled": 58686,
  "ic_fluent_door_arrow_left_20_filled": 58737,
  "ic_fluent_drop_12_filled": 58778,
  "ic_fluent_drop_16_filled": 58779,
  "ic_fluent_drop_20_filled": 58780,
  "ic_fluent_drop_24_filled": 58781,
  "ic_fluent_drop_28_filled": 58782,
  "ic_fluent_drop_48_filled": 58783,
  "ic_fluent_dumbbell_16_filled": 58811,
  "ic_fluent_dumbbell_20_filled": 58812,
  "ic_fluent_dumbbell_24_filled": 58813,
  "ic_fluent_dumbbell_28_filled": 58814,
  "ic_fluent_edit_off_20_filled": 58820,
  "ic_fluent_eyedropper_20_filled": 58890,
  "ic_fluent_eyedropper_24_filled": 58891,
  "ic_fluent_flag_off_16_filled": 58914,
  "ic_fluent_flag_off_20_filled": 58915,
  "ic_fluent_fps_120_20_filled": 59010,
  "ic_fluent_fps_120_24_filled": 59011,
  "ic_fluent_fps_240_20_filled": 59012,
  "ic_fluent_guitar_16_filled": 59103,
  "ic_fluent_guitar_20_filled": 59104,
  "ic_fluent_guitar_24_filled": 59105,
  "ic_fluent_guitar_28_filled": 59106,
  "ic_fluent_key_command_16_filled": 59216,
  "ic_fluent_more_vertical_16_filled": 59447,
  "ic_fluent_people_checkmark_20_filled": 59653,
  "ic_fluent_people_checkmark_24_filled": 59654,
  "ic_fluent_play_circle_16_filled": 59813,
  "ic_fluent_play_circle_20_filled": 59814,
  "ic_fluent_play_circle_28_filled": 59815,
  "ic_fluent_re_order_dots_horizontal_16_filled": 59900,
  "ic_fluent_re_order_dots_horizontal_20_filled": 59901,
  "ic_fluent_re_order_dots_horizontal_24_filled": 59902,
  "ic_fluent_re_order_dots_vertical_16_filled": 59903,
  "ic_fluent_re_order_dots_vertical_20_filled": 59904,
  "ic_fluent_re_order_dots_vertical_24_filled": 59905,
  "ic_fluent_scale_fill_20_filled": 59991,
  "ic_fluent_skip_back_10_20_filled": 60164,
  "ic_fluent_skip_forward_10_20_filled": 60169,
  "ic_fluent_skip_forward_30_20_filled": 60174,
  "ic_fluent_slide_eraser_24_filled": 60191,
  "ic_fluent_split_horizontal_12_filled": 60256,
  "ic_fluent_split_horizontal_16_filled": 60257,
  "ic_fluent_split_horizontal_20_filled": 60258,
  "ic_fluent_split_horizontal_24_filled": 60259,
  "ic_fluent_split_horizontal_28_filled": 60260,
  "ic_fluent_split_horizontal_32_filled": 60261,
  "ic_fluent_split_horizontal_48_filled": 60262,
  "ic_fluent_split_vertical_12_filled": 60263,
  "ic_fluent_split_vertical_16_filled": 60264,
  "ic_fluent_split_vertical_20_filled": 60265,
  "ic_fluent_split_vertical_24_filled": 60266,
  "ic_fluent_split_vertical_28_filled": 60267,
  "ic_fluent_split_vertical_32_filled": 60268,
  "ic_fluent_split_vertical_48_filled": 60269,
  "ic_fluent_sport_soccer_20_filled": 60282,
  "ic_fluent_sport_soccer_24_filled": 60283,
  "ic_fluent_symbols_20_filled": 60379,
  "ic_fluent_table_delete_column_20_filled": 60422,
  "ic_fluent_table_delete_row_20_filled": 60426,
  "ic_fluent_table_stack_above_20_filled": 60497,
  "ic_fluent_table_stack_left_20_filled": 60505,
  "ic_fluent_table_stack_right_20_filled": 60509,
  "ic_fluent_task_list_ltr_20_filled": 60560,
  "ic_fluent_task_list_ltr_24_filled": 60561,
  "ic_fluent_task_list_rtl_20_filled": 60562,
  "ic_fluent_task_list_rtl_24_filled": 60563,
  "ic_fluent_tetris_app_16_filled": 60581,
  "ic_fluent_tetris_app_20_filled": 60582,
  "ic_fluent_tetris_app_24_filled": 60583,
  "ic_fluent_tetris_app_28_filled": 60584,
  "ic_fluent_tetris_app_32_filled": 60585,
  "ic_fluent_tetris_app_48_filled": 60586,
  "ic_fluent_text_bullet_list_ltr_20_filled": 60631,
  "ic_fluent_text_bullet_list_ltr_24_filled": 60632,
  "ic_fluent_text_bullet_list_rtl_20_filled": 60638,
  "ic_fluent_text_bullet_list_rtl_24_filled": 60639,
  "ic_fluent_vehicle_cab_16_filled": 60885,
  "ic_fluent_vehicle_cab_20_filled": 60886,
  "ic_fluent_vehicle_cab_28_filled": 60887,
  "ic_fluent_vehicle_truck_profile_24_filled": 60911,
  "ic_fluent_bot_add_20_filled": 57805,
  "ic_fluent_chart_person_20_filled": 58099,
  "ic_fluent_chart_person_24_filled": 58100,
  "ic_fluent_chart_person_28_filled": 58101,
  "ic_fluent_chart_person_48_filled": 58102,
  "ic_fluent_mic_prohibited_16_filled": 59407,
  "ic_fluent_mic_prohibited_28_filled": 59410,
  "ic_fluent_mic_prohibited_48_filled": 59411,
  "ic_fluent_tv_usb_16_filled": 60871,
  "ic_fluent_tv_usb_20_filled": 60872,
  "ic_fluent_tv_usb_24_filled": 60873,
  "ic_fluent_tv_usb_28_filled": 60874,
  "ic_fluent_tv_usb_48_filled": 60875,
  "ic_fluent_video_360_off_20_filled": 60915,
  "ic_fluent_video_prohibited_16_filled": 60955,
  "ic_fluent_video_prohibited_24_filled": 60957,
  "ic_fluent_video_prohibited_28_filled": 60958,
  "ic_fluent_alert_32_filled": 57365,
  "ic_fluent_arrow_down_left_20_filled": 57531,
  "ic_fluent_arrow_step_back_16_filled": 57592,
  "ic_fluent_arrow_step_in_16_filled": 57595,
  "ic_fluent_arrow_step_out_16_filled": 57610,
  "ic_fluent_arrow_step_over_16_filled": 57614,
  "ic_fluent_arrow_up_right_20_filled": 57647,
  "ic_fluent_backpack_32_filled": 57669,
  "ic_fluent_book_contacts_32_filled": 57729,
  "ic_fluent_bookmark_32_filled": 57765,
  "ic_fluent_bookmark_multiple_24_filled": 57768,
  "ic_fluent_branch_compare_16_filled": 57838,
  "ic_fluent_branch_compare_20_filled": 57839,
  "ic_fluent_branch_compare_24_filled": 57840,
  "ic_fluent_branch_fork_16_filled": 57841,
  "ic_fluent_branch_fork_20_filled": 57842,
  "ic_fluent_branch_fork_24_filled": 57843,
  "ic_fluent_calendar_ltr_16_filled": 57953,
  "ic_fluent_calendar_ltr_32_filled": 57957,
  "ic_fluent_calendar_rtl_32_filled": 57978,
  "ic_fluent_call_32_filled": 57991,
  "ic_fluent_calligraphy_pen_error_20_filled": 58027,
  "ic_fluent_chat_32_filled": 58105,
  "ic_fluent_clipboard_data_bar_32_filled": 58214,
  "ic_fluent_clock_alarm_32_filled": 58245,
  "ic_fluent_content_view_32_filled": 58405,
  "ic_fluent_desktop_32_filled": 58515,
  "ic_fluent_dismiss_square_multiple_16_filled": 58578,
  "ic_fluent_document_32_filled": 58596,
  "ic_fluent_document_pdf_32_filled": 58676,
  "ic_fluent_food_pizza_20_filled": 59005,
  "ic_fluent_food_pizza_24_filled": 59006,
  "ic_fluent_globe_32_filled": 59071,
  "ic_fluent_headset_32_filled": 59141,
  "ic_fluent_heart_pulse_20_filled": 59150,
  "ic_fluent_multiplier_1_2x_20_filled": 59451,
  "ic_fluent_multiplier_1_2x_24_filled": 59452,
  "ic_fluent_multiplier_1_2x_28_filled": 59453,
  "ic_fluent_multiplier_1_2x_32_filled": 59454,
  "ic_fluent_multiplier_1_2x_48_filled": 59455,
  "ic_fluent_multiplier_1_5x_20_filled": 59456,
  "ic_fluent_multiplier_1_5x_24_filled": 59457,
  "ic_fluent_multiplier_1_5x_28_filled": 59458,
  "ic_fluent_multiplier_1_5x_32_filled": 59459,
  "ic_fluent_multiplier_1_5x_48_filled": 59460,
  "ic_fluent_multiplier_1_8x_20_filled": 59461,
  "ic_fluent_multiplier_1_8x_24_filled": 59462,
  "ic_fluent_multiplier_1_8x_28_filled": 59463,
  "ic_fluent_multiplier_1_8x_32_filled": 59464,
  "ic_fluent_multiplier_1_8x_48_filled": 59465,
  "ic_fluent_multiplier_1x_20_filled": 59466,
  "ic_fluent_multiplier_1x_24_filled": 59467,
  "ic_fluent_multiplier_1x_28_filled": 59468,
  "ic_fluent_multiplier_1x_32_filled": 59469,
  "ic_fluent_multiplier_1x_48_filled": 59470,
  "ic_fluent_multiplier_2x_20_filled": 59471,
  "ic_fluent_multiplier_2x_24_filled": 59472,
  "ic_fluent_multiplier_2x_28_filled": 59473,
  "ic_fluent_multiplier_2x_32_filled": 59474,
  "ic_fluent_multiplier_2x_48_filled": 59475,
  "ic_fluent_my_location_16_filled": 59499,
  "ic_fluent_my_location_20_filled": 59500,
  "ic_fluent_notepad_32_filled": 59533,
  "ic_fluent_patient_32_filled": 59613,
  "ic_fluent_people_team_32_filled": 59682,
  "ic_fluent_pulse_32_filled": 59879,
  "ic_fluent_remote_16_filled": 59927,
  "ic_fluent_ribbon_32_filled": 59953,
  "ic_fluent_shifts_32_filled": 60135,
  "ic_fluent_skip_forward_10_24_filled": 60170,
  "ic_fluent_skip_forward_10_28_filled": 60171,
  "ic_fluent_skip_forward_10_32_filled": 60172,
  "ic_fluent_skip_forward_10_48_filled": 60173,
  "ic_fluent_skip_forward_30_24_filled": 60175,
  "ic_fluent_skip_forward_30_28_filled": 60176,
  "ic_fluent_skip_forward_30_32_filled": 60177,
  "ic_fluent_skip_forward_30_48_filled": 60178,
  "ic_fluent_subtract_square_multiple_16_filled": 60373,
  "ic_fluent_text_sort_ascending_16_filled": 60762,
  "ic_fluent_text_sort_ascending_24_filled": 60763,
  "ic_fluent_text_sort_descending_16_filled": 60764,
  "ic_fluent_text_sort_descending_24_filled": 60765,
  "ic_fluent_video_person_call_32_filled": 60944,
  "ic_fluent_weather_sunny_32_filled": 61006,
  "ic_fluent_align_bottom_16_filled": 57374,
  "ic_fluent_align_bottom_20_filled": 57375,
  "ic_fluent_align_bottom_24_filled": 57376,
  "ic_fluent_align_bottom_28_filled": 57377,
  "ic_fluent_align_bottom_32_filled": 57378,
  "ic_fluent_align_bottom_48_filled": 57379,
  "ic_fluent_align_center_horizontal_16_filled": 57380,
  "ic_fluent_align_center_horizontal_20_filled": 57381,
  "ic_fluent_align_center_horizontal_24_filled": 57382,
  "ic_fluent_align_center_horizontal_28_filled": 57383,
  "ic_fluent_align_center_horizontal_32_filled": 57384,
  "ic_fluent_align_center_horizontal_48_filled": 57385,
  "ic_fluent_align_center_vertical_16_filled": 57386,
  "ic_fluent_align_center_vertical_20_filled": 57387,
  "ic_fluent_align_center_vertical_24_filled": 57388,
  "ic_fluent_align_center_vertical_28_filled": 57389,
  "ic_fluent_align_center_vertical_32_filled": 57390,
  "ic_fluent_align_center_vertical_48_filled": 57391,
  "ic_fluent_align_left_16_filled": 57394,
  "ic_fluent_align_left_20_filled": 57395,
  "ic_fluent_align_left_24_filled": 57396,
  "ic_fluent_align_left_28_filled": 57397,
  "ic_fluent_align_left_32_filled": 57398,
  "ic_fluent_align_left_48_filled": 57399,
  "ic_fluent_align_right_16_filled": 57400,
  "ic_fluent_align_right_20_filled": 57401,
  "ic_fluent_align_right_24_filled": 57402,
  "ic_fluent_align_right_28_filled": 57403,
  "ic_fluent_align_right_32_filled": 57404,
  "ic_fluent_align_right_48_filled": 57405,
  "ic_fluent_align_top_16_filled": 57417,
  "ic_fluent_align_top_20_filled": 57418,
  "ic_fluent_align_top_24_filled": 57419,
  "ic_fluent_align_top_28_filled": 57420,
  "ic_fluent_align_top_32_filled": 57421,
  "ic_fluent_align_top_48_filled": 57422,
  "ic_fluent_calculator_24_filled": 57927,
  "ic_fluent_camera_16_filled": 58029,
  "ic_fluent_group_dismiss_24_filled": 59094,
  "ic_fluent_group_return_24_filled": 59097,
  "ic_fluent_hand_left_16_filled": 59111,
  "ic_fluent_hand_left_24_filled": 59113,
  "ic_fluent_hand_left_28_filled": 59114,
  "ic_fluent_hand_right_16_filled": 59115,
  "ic_fluent_home_12_filled": 59163,
  "ic_fluent_keyboard_shift_16_filled": 59230,
  "ic_fluent_keyboard_shift_20_filled": 59231,
  "ic_fluent_link_square_20_filled": 59269,
  "ic_fluent_mail_inbox_checkmark_16_filled": 59339,
  "ic_fluent_mail_inbox_checkmark_20_filled": 59340,
  "ic_fluent_mail_inbox_checkmark_24_filled": 59341,
  "ic_fluent_music_note_2_20_filled": 59490,
  "ic_fluent_my_location_12_filled": 59498,
  "ic_fluent_number_symbol_square_20_filled": 59546,
  "ic_fluent_number_symbol_square_24_filled": 59547,
  "ic_fluent_person_32_filled": 59693,
  "ic_fluent_person_5_32_filled": 59695,
  "ic_fluent_search_16_filled": 60036,
  "ic_fluent_send_16_filled": 60055,
  "ic_fluent_symbols_16_filled": 60378,
  "ic_fluent_teddy_20_filled": 60574,
  "ic_fluent_video_person_star_off_24_filled": 60953,
  "ic_fluent_apps_add_in_16_filled": 57442,
  "ic_fluent_apps_add_in_28_filled": 57443,
  "ic_fluent_arrow_curve_down_left_16_filled": 57528,
  "ic_fluent_arrow_curve_down_left_24_filled": 57529,
  "ic_fluent_arrow_curve_down_left_28_filled": 57530,
  "ic_fluent_arrow_upload_16_filled": 57650,
  "ic_fluent_attach_12_filled": 57654,
  "ic_fluent_board_16_filled": 57702,
  "ic_fluent_board_20_filled": 57703,
  "ic_fluent_board_28_filled": 57704,
  "ic_fluent_board_split_16_filled": 57709,
  "ic_fluent_board_split_20_filled": 57710,
  "ic_fluent_board_split_24_filled": 57711,
  "ic_fluent_board_split_28_filled": 57712,
  "ic_fluent_board_split_48_filled": 57713,
  "ic_fluent_calendar_empty_32_filled": 57948,
  "ic_fluent_calendar_ltr_12_filled": 57952,
  "ic_fluent_calendar_multiple_32_filled": 57963,
  "ic_fluent_chevron_up_down_20_filled": 58180,
  "ic_fluent_chevron_up_down_24_filled": 58181,
  "ic_fluent_circle_12_filled": 58182,
  "ic_fluent_circle_half_fill_12_filled": 58188,
  "ic_fluent_circle_line_12_filled": 58190,
  "ic_fluent_closed_caption_off_16_filled": 58258,
  "ic_fluent_closed_caption_off_20_filled": 58259,
  "ic_fluent_closed_caption_off_24_filled": 58260,
  "ic_fluent_closed_caption_off_28_filled": 58261,
  "ic_fluent_closed_caption_off_48_filled": 58262,
  "ic_fluent_desktop_pulse_16_filled": 58536,
  "ic_fluent_desktop_pulse_20_filled": 58537,
  "ic_fluent_desktop_pulse_24_filled": 58538,
  "ic_fluent_desktop_pulse_28_filled": 58539,
  "ic_fluent_desktop_pulse_32_filled": 58540,
  "ic_fluent_desktop_pulse_48_filled": 58541,
  "ic_fluent_developer_board_20_filled": 58552,
  "ic_fluent_dismiss_square_24_filled": 58577,
  "ic_fluent_door_arrow_left_24_filled": 58738,
  "ic_fluent_emoji_hand_20_filled": 58843,
  "ic_fluent_filter_16_filled": 58903,
  "ic_fluent_flash_16_filled": 58916,
  "ic_fluent_flash_28_filled": 58919,
  "ic_fluent_flash_checkmark_16_filled": 58922,
  "ic_fluent_flash_checkmark_20_filled": 58923,
  "ic_fluent_flash_checkmark_24_filled": 58924,
  "ic_fluent_flash_checkmark_28_filled": 58925,
  "ic_fluent_folder_prohibited_16_filled": 58984,
  "ic_fluent_grid_16_filled": 59088,
  "ic_fluent_headphones_20_filled": 59131,
  "ic_fluent_headphones_32_filled": 59132,
  "ic_fluent_headphones_48_filled": 59133,
  "ic_fluent_headphones_sound_wave_20_filled": 59134,
  "ic_fluent_headphones_sound_wave_24_filled": 59135,
  "ic_fluent_headphones_sound_wave_28_filled": 59136,
  "ic_fluent_headphones_sound_wave_32_filled": 59137,
  "ic_fluent_headphones_sound_wave_48_filled": 59138,
  "ic_fluent_home_checkmark_16_filled": 59168,
  "ic_fluent_home_checkmark_20_filled": 59169,
  "ic_fluent_ink_stroke_20_filled": 59205,
  "ic_fluent_ink_stroke_24_filled": 59206,
  "ic_fluent_library_16_filled": 59247,
  "ic_fluent_library_20_filled": 59248,
  "ic_fluent_list_16_filled": 59271,
  "ic_fluent_location_arrow_left_48_filled": 59281,
  "ic_fluent_location_arrow_right_48_filled": 59282,
  "ic_fluent_location_arrow_up_48_filled": 59283,
  "ic_fluent_mail_inbox_checkmark_28_filled": 59342,
  "ic_fluent_map_20_filled": 59368,
  "ic_fluent_multiplier_5x_20_filled": 59476,
  "ic_fluent_multiplier_5x_24_filled": 59477,
  "ic_fluent_multiplier_5x_28_filled": 59478,
  "ic_fluent_multiplier_5x_32_filled": 59479,
  "ic_fluent_multiplier_5x_48_filled": 59480,
  "ic_fluent_music_note_2_play_20_filled": 59492,
  "ic_fluent_notepad_12_filled": 59532,
  "ic_fluent_organization_12_filled": 59560,
  "ic_fluent_people_community_add_20_filled": 59655,
  "ic_fluent_people_community_add_28_filled": 59656,
  "ic_fluent_person_6_32_filled": 59697,
  "ic_fluent_person_add_16_filled": 59699,
  "ic_fluent_person_add_28_filled": 59700,
  "ic_fluent_person_prohibited_16_filled": 59732,
  "ic_fluent_person_prohibited_28_filled": 59734,
  "ic_fluent_pin_28_filled": 59796,
  "ic_fluent_pin_32_filled": 59797,
  "ic_fluent_pin_48_filled": 59798,
  "ic_fluent_premium_person_20_filled": 59845,
  "ic_fluent_premium_person_24_filled": 59846,
  "ic_fluent_prohibited_multiple_16_filled": 59864,
  "ic_fluent_prohibited_multiple_20_filled": 59865,
  "ic_fluent_prohibited_multiple_24_filled": 59866,
  "ic_fluent_read_aloud_16_filled": 59906,
  "ic_fluent_read_aloud_28_filled": 59907,
  "ic_fluent_shield_16_filled": 60108,
  "ic_fluent_shield_28_filled": 60109,
  "ic_fluent_shield_48_filled": 60110,
  "ic_fluent_shield_checkmark_16_filled": 60112,
  "ic_fluent_shield_checkmark_20_filled": 60113,
  "ic_fluent_shield_checkmark_24_filled": 60114,
  "ic_fluent_shield_checkmark_28_filled": 60115,
  "ic_fluent_shield_checkmark_48_filled": 60116,
  "ic_fluent_top_speed_20_filled": 60827,
  "ic_fluent_checkmark_circle_12_filled": 58139,
  "ic_fluent_add_square_multiple_16_filled": 57352,
  "ic_fluent_add_square_multiple_20_filled": 57353,
  "ic_fluent_arrow_forward_48_filled": 57553,
  "ic_fluent_arrow_sync_16_filled": 57616,
  "ic_fluent_book_open_28_filled": 57742,
  "ic_fluent_book_open_32_filled": 57743,
  "ic_fluent_book_open_48_filled": 57744,
  "ic_fluent_book_open_microphone_20_filled": 57747,
  "ic_fluent_book_open_microphone_24_filled": 57748,
  "ic_fluent_book_open_microphone_28_filled": 57749,
  "ic_fluent_book_open_microphone_32_filled": 57750,
  "ic_fluent_book_open_microphone_48_filled": 57751,
  "ic_fluent_briefcase_off_16_filled": 57860,
  "ic_fluent_briefcase_off_20_filled": 57861,
  "ic_fluent_briefcase_off_24_filled": 57862,
  "ic_fluent_briefcase_off_28_filled": 57863,
  "ic_fluent_briefcase_off_32_filled": 57864,
  "ic_fluent_briefcase_off_48_filled": 57865,
  "ic_fluent_building_bank_28_filled": 57891,
  "ic_fluent_building_bank_48_filled": 57892,
  "ic_fluent_building_bank_link_16_filled": 57893,
  "ic_fluent_building_bank_link_20_filled": 57894,
  "ic_fluent_building_bank_link_24_filled": 57895,
  "ic_fluent_building_bank_link_28_filled": 57896,
  "ic_fluent_building_bank_link_48_filled": 57897,
  "ic_fluent_calendar_mail_16_filled": 57959,
  "ic_fluent_calendar_rtl_12_filled": 57973,
  "ic_fluent_calendar_rtl_16_filled": 57974,
  "ic_fluent_chevron_double_up_16_filled": 58177,
  "ic_fluent_chevron_double_up_20_filled": 58178,
  "ic_fluent_cloud_28_filled": 58264,
  "ic_fluent_cloud_off_16_filled": 58300,
  "ic_fluent_cloud_off_20_filled": 58301,
  "ic_fluent_cloud_off_28_filled": 58302,
  "ic_fluent_cloud_off_32_filled": 58303,
  "ic_fluent_cloud_sync_16_filled": 58306,
  "ic_fluent_cloud_sync_24_filled": 58308,
  "ic_fluent_cloud_sync_28_filled": 58309,
  "ic_fluent_cloud_sync_32_filled": 58310,
  "ic_fluent_cloud_sync_48_filled": 58311,
  "ic_fluent_dismiss_square_20_filled": 58576,
  "ic_fluent_document_footer_16_filled": 58632,
  "ic_fluent_document_footer_dismiss_24_filled": 58635,
  "ic_fluent_document_header_16_filled": 58636,
  "ic_fluent_document_header_arrow_down_16_filled": 58638,
  "ic_fluent_document_header_dismiss_24_filled": 58642,
  "ic_fluent_document_header_footer_16_filled": 58643,
  "ic_fluent_document_ribbon_16_filled": 58693,
  "ic_fluent_document_ribbon_20_filled": 58694,
  "ic_fluent_document_ribbon_24_filled": 58695,
  "ic_fluent_document_ribbon_28_filled": 58696,
  "ic_fluent_document_ribbon_32_filled": 58697,
  "ic_fluent_document_ribbon_48_filled": 58698,
  "ic_fluent_door_arrow_left_16_filled": 58736,
  "ic_fluent_drive_train_24_filled": 58777,
  "ic_fluent_engine_24_filled": 58861,
  "ic_fluent_folder_mail_16_filled": 58979,
  "ic_fluent_folder_sync_16_filled": 58992,
  "ic_fluent_gas_24_filled": 59038,
  "ic_fluent_gas_pump_24_filled": 59040,
  "ic_fluent_mail_dismiss_16_filled": 59327,
  "ic_fluent_mail_prohibited_16_filled": 59357,
  "ic_fluent_mic_sparkle_16_filled": 59425,
  "ic_fluent_mic_sparkle_20_filled": 59426,
  "ic_fluent_mic_sparkle_24_filled": 59427,
  "ic_fluent_notepad_person_20_filled": 59536,
  "ic_fluent_notepad_person_24_filled": 59537,
  "ic_fluent_pin_off_16_filled": 59799,
  "ic_fluent_pin_off_48_filled": 59802,
  "ic_fluent_skip_forward_tab_24_filled": 60180,
  "ic_fluent_square_arrow_forward_16_filled": 60293,
  "ic_fluent_square_arrow_forward_20_filled": 60294,
  "ic_fluent_square_arrow_forward_24_filled": 60295,
  "ic_fluent_square_arrow_forward_28_filled": 60296,
  "ic_fluent_square_arrow_forward_32_filled": 60297,
  "ic_fluent_square_arrow_forward_48_filled": 60298,
  "ic_fluent_subtract_square_multiple_20_filled": 60374,
  "ic_fluent_transmission_24_filled": 60829,
  "ic_fluent_wifi_off_20_filled": 61017,
  "ic_fluent_wifi_off_24_filled": 61018,
  "ic_fluent_animal_cat_16_filled": 61702,
  "ic_fluent_animal_cat_20_filled": 61734,
  "ic_fluent_animal_cat_24_filled": 61735,
  "ic_fluent_animal_cat_28_filled": 61736,
  "ic_fluent_archive_settings_16_filled": 61737,
  "ic_fluent_arrow_circle_down_20_filled": 61740,
  "ic_fluent_arrow_circle_down_24_filled": 61741,
  "ic_fluent_arrow_circle_down_double_20_filled": 61742,
  "ic_fluent_arrow_circle_down_double_24_filled": 61743,
  "ic_fluent_arrow_circle_down_split_20_filled": 61763,
  "ic_fluent_arrow_circle_down_split_24_filled": 61764,
  "ic_fluent_arrow_down_32_filled": 61772,
  "ic_fluent_arrow_down_48_filled": 61773,
  "ic_fluent_arrow_fit_16_filled": 61774,
  "ic_fluent_arrow_left_16_filled": 61828,
  "ic_fluent_arrow_left_32_filled": 61833,
  "ic_fluent_arrow_left_48_filled": 61854,
  "ic_fluent_arrow_reset_20_filled": 61855,
  "ic_fluent_arrow_reset_24_filled": 61856,
  "ic_fluent_arrow_right_32_filled": 61858,
  "ic_fluent_arrow_right_48_filled": 61863,
  "ic_fluent_arrow_sort_16_filled": 61867,
  "ic_fluent_arrow_sort_down_16_filled": 61868,
  "ic_fluent_arrow_sort_down_lines_16_filled": 61869,
  "ic_fluent_arrow_sort_up_16_filled": 61875,
  "ic_fluent_arrow_up_16_filled": 61876,
  "ic_fluent_arrow_up_32_filled": 61880,
  "ic_fluent_arrow_up_48_filled": 61881,
  "ic_fluent_barcode_scanner_20_filled": 61882,
  "ic_fluent_barcode_scanner_24_filled": 61924,
  "ic_fluent_beaker_edit_20_filled": 61925,
  "ic_fluent_beaker_edit_24_filled": 61926,
  "ic_fluent_book_toolbox_20_filled": 61927,
  "ic_fluent_bookmark_add_20_filled": 61928,
  "ic_fluent_bookmark_add_24_filled": 61929,
  "ic_fluent_bowl_chopsticks_16_filled": 61930,
  "ic_fluent_bowl_chopsticks_20_filled": 61931,
  "ic_fluent_bowl_chopsticks_24_filled": 61932,
  "ic_fluent_bowl_chopsticks_28_filled": 61933,
  "ic_fluent_brain_circuit_20_filled": 61934,
  "ic_fluent_briefcase_medical_20_filled": 61935,
  "ic_fluent_broom_16_filled": 61950,
  "ic_fluent_building_bank_toolbox_20_filled": 61951,
  "ic_fluent_calendar_info_16_filled": 61955,
  "ic_fluent_calendar_multiple_16_filled": 61956,
  "ic_fluent_call_checkmark_20_filled": 61959,
  "ic_fluent_call_dismiss_20_filled": 61960,
  "ic_fluent_call_dismiss_24_filled": 61963,
  "ic_fluent_call_pause_20_filled": 61964,
  "ic_fluent_call_pause_24_filled": 61965,
  "ic_fluent_chat_help_20_filled": 61984,
  "ic_fluent_chat_settings_20_filled": 61985,
  "ic_fluent_chat_settings_24_filled": 61993,
  "ic_fluent_check_20_filled": 62075,
  "ic_fluent_checkbox_checked_16_filled": 62076,
  "ic_fluent_checkbox_checked_sync_16_filled": 62077,
  "ic_fluent_checkmark_starburst_16_filled": 62083,
  "ic_fluent_chevron_double_down_16_filled": 62084,
  "ic_fluent_chevron_double_left_16_filled": 62085,
  "ic_fluent_chevron_double_right_16_filled": 62119,
  "ic_fluent_circle_half_fill_16_filled": 62218,
  "ic_fluent_clipboard_heart_20_filled": 62219,
  "ic_fluent_clipboard_pulse_20_filled": 62242,
  "ic_fluent_clipboard_settings_20_filled": 62253,
  "ic_fluent_clock_arrow_download_20_filled": 62254,
  "ic_fluent_cloud_add_16_filled": 62255,
  "ic_fluent_cloud_edit_16_filled": 62256,
  "ic_fluent_cloud_flow_20_filled": 62263,
  "ic_fluent_cloud_link_16_filled": 62264,
  "ic_fluent_code_16_filled": 62265,
  "ic_fluent_comment_error_16_filled": 62288,
  "ic_fluent_comment_lightning_20_filled": 62289,
  "ic_fluent_comment_lightning_24_filled": 62305,
  "ic_fluent_contact_card_16_filled": 62306,
  "ic_fluent_contact_card_link_16_filled": 62307,
  "ic_fluent_contract_down_left_16_filled": 62308,
  "ic_fluent_contract_down_left_20_filled": 62323,
  "ic_fluent_contract_down_left_24_filled": 62324,
  "ic_fluent_contract_down_left_28_filled": 62325,
  "ic_fluent_contract_down_left_32_filled": 62331,
  "ic_fluent_contract_down_left_48_filled": 62359,
  "ic_fluent_credit_card_toolbox_20_filled": 62360,
  "ic_fluent_data_bar_horizontal_20_filled": 62363,
  "ic_fluent_data_usage_edit_20_filled": 62386,
  "ic_fluent_desktop_sync_16_filled": 62387,
  "ic_fluent_device_meeting_room_16_filled": 62388,
  "ic_fluent_device_meeting_room_24_filled": 62389,
  "ic_fluent_device_meeting_room_28_filled": 62390,
  "ic_fluent_device_meeting_room_32_filled": 62391,
  "ic_fluent_device_meeting_room_48_filled": 62396,
  "ic_fluent_device_meeting_room_remote_16_filled": 62397,
  "ic_fluent_device_meeting_room_remote_24_filled": 62402,
  "ic_fluent_device_meeting_room_remote_28_filled": 62413,
  "ic_fluent_device_meeting_room_remote_32_filled": 62444,
  "ic_fluent_device_meeting_room_remote_48_filled": 62445,
  "ic_fluent_dismiss_32_filled": 62450,
  "ic_fluent_dismiss_48_filled": 62463,
  "ic_fluent_document_arrow_up_16_filled": 62464,
  "ic_fluent_document_bullet_list_20_filled": 62465,
  "ic_fluent_document_bullet_list_24_filled": 62466,
  "ic_fluent_document_link_20_filled": 62467,
  "ic_fluent_document_link_24_filled": 62468,
  "ic_fluent_document_person_16_filled": 62501,
  "ic_fluent_document_settings_16_filled": 62502,
  "ic_fluent_document_split_hint_24_filled": 62503,
  "ic_fluent_document_split_hint_off_24_filled": 62504,
  "ic_fluent_edit_arrow_back_16_filled": 62509,
  "ic_fluent_equal_off_20_filled": 62510,
  "ic_fluent_error_circle_settings_16_filled": 62511,
  "ic_fluent_expand_up_left_16_filled": 62512,
  "ic_fluent_expand_up_left_20_filled": 62517,
  "ic_fluent_expand_up_left_24_filled": 62518,
  "ic_fluent_expand_up_left_28_filled": 62519,
  "ic_fluent_expand_up_left_32_filled": 62543,
  "ic_fluent_expand_up_left_48_filled": 62544,
  "ic_fluent_expand_up_right_16_filled": 62547,
  "ic_fluent_expand_up_right_20_filled": 62548,
  "ic_fluent_expand_up_right_24_filled": 62577,
  "ic_fluent_expand_up_right_28_filled": 62620,
  "ic_fluent_expand_up_right_32_filled": 62621,
  "ic_fluent_expand_up_right_48_filled": 62622,
  "ic_fluent_fax_16_filled": 62648,
  "ic_fluent_flow_16_filled": 62649,
  "ic_fluent_folder_globe_16_filled": 62651,
  "ic_fluent_folder_person_16_filled": 62672,
  "ic_fluent_gauge_20_filled": 62673,
  "ic_fluent_gauge_24_filled": 62674,
  "ic_fluent_gift_card_16_filled": 62679,
  "ic_fluent_gift_card_20_filled": 62680,
  "ic_fluent_gift_card_add_20_filled": 62681,
  "ic_fluent_globe_location_20_filled": 62694,
  "ic_fluent_globe_star_16_filled": 62709,
  "ic_fluent_globe_video_20_filled": 62727,
  "ic_fluent_headset_add_20_filled": 62728,
  "ic_fluent_headset_add_24_filled": 62729,
  "ic_fluent_heart_28_filled": 62730,
  "ic_fluent_heart_broken_16_filled": 62731,
  "ic_fluent_laptop_dismiss_16_filled": 62735,
  "ic_fluent_mail_add_16_filled": 62743,
  "ic_fluent_mail_add_20_filled": 62761,
  "ic_fluent_mail_alert_16_filled": 62762,
  "ic_fluent_mail_alert_20_filled": 62772,
  "ic_fluent_mail_alert_24_filled": 62773,
  "ic_fluent_mail_arrow_down_16_filled": 62774,
  "ic_fluent_mail_arrow_up_20_filled": 62775,
  "ic_fluent_mail_arrow_up_24_filled": 62805,
  "ic_fluent_mail_checkmark_16_filled": 62806,
  "ic_fluent_mail_clock_16_filled": 62811,
  "ic_fluent_mail_clock_24_filled": 62812,
  "ic_fluent_mail_dismiss_20_filled": 62813,
  "ic_fluent_mail_dismiss_24_filled": 62814,
  "ic_fluent_mail_error_20_filled": 62815,
  "ic_fluent_mail_error_24_filled": 62823,
  "ic_fluent_mail_inbox_arrow_down_16_filled": 62824,
  "ic_fluent_mail_link_20_filled": 62863,
  "ic_fluent_mail_link_24_filled": 62870,
  "ic_fluent_mail_pause_16_filled": 62896,
  "ic_fluent_mail_prohibited_20_filled": 62933,
  "ic_fluent_mail_prohibited_24_filled": 62956,
  "ic_fluent_mail_settings_16_filled": 62957,
  "ic_fluent_mail_shield_16_filled": 62962,
  "ic_fluent_mail_template_20_filled": 62963,
  "ic_fluent_mail_template_24_filled": 62967,
  "ic_fluent_mail_warning_16_filled": 62968,
  "ic_fluent_meet_now_28_filled": 62976,
  "ic_fluent_meet_now_32_filled": 62977,
  "ic_fluent_meet_now_48_filled": 63035,
  "ic_fluent_megaphone_loud_20_filled": 63061,
  "ic_fluent_microscope_20_filled": 63062,
  "ic_fluent_microscope_24_filled": 63065,
  "ic_fluent_molecule_16_filled": 63066,
  "ic_fluent_molecule_20_filled": 63075,
  "ic_fluent_molecule_24_filled": 63076,
  "ic_fluent_molecule_28_filled": 63079,
  "ic_fluent_molecule_32_filled": 63080,
  "ic_fluent_molecule_48_filled": 63081,
  "ic_fluent_note_16_filled": 63085,
  "ic_fluent_note_pin_16_filled": 63086,
  "ic_fluent_notepad_16_filled": 63087,
  "ic_fluent_notepad_edit_16_filled": 63088,
  "ic_fluent_open_32_filled": 63089,
  "ic_fluent_padding_down_20_filled": 63115,
  "ic_fluent_padding_down_24_filled": 63116,
  "ic_fluent_padding_left_20_filled": 63134,
  "ic_fluent_padding_left_24_filled": 63143,
  "ic_fluent_padding_right_20_filled": 63144,
  "ic_fluent_padding_right_24_filled": 63145,
  "ic_fluent_padding_top_20_filled": 63165,
  "ic_fluent_padding_top_24_filled": 63170,
  "ic_fluent_patch_20_filled": 63171,
  "ic_fluent_patch_24_filled": 63172,
  "ic_fluent_pause_circle_20_filled": 63173,
  "ic_fluent_people_sync_16_filled": 63174,
  "ic_fluent_people_toolbox_16_filled": 63187,
  "ic_fluent_person_chat_16_filled": 63188,
  "ic_fluent_person_chat_20_filled": 63194,
  "ic_fluent_person_chat_24_filled": 63196,
  "ic_fluent_person_info_16_filled": 63199,
  "ic_fluent_person_lock_16_filled": 63201,
  "ic_fluent_person_lock_20_filled": 63202,
  "ic_fluent_person_subtract_16_filled": 63222,
  "ic_fluent_phone_16_filled": 63223,
  "ic_fluent_phone_checkmark_16_filled": 63224,
  "ic_fluent_pill_16_filled": 63225,
  "ic_fluent_pill_20_filled": 63226,
  "ic_fluent_pill_24_filled": 63227,
  "ic_fluent_pill_28_filled": 63228,
  "ic_fluent_print_16_filled": 63235,
  "ic_fluent_print_add_20_filled": 63237,
  "ic_fluent_production_20_filled": 63238,
  "ic_fluent_production_24_filled": 63239,
  "ic_fluent_production_checkmark_20_filled": 63244,
  "ic_fluent_production_checkmark_24_filled": 63245,
  "ic_fluent_prohibited_16_filled": 63246,
  "ic_fluent_ratio_one_to_one_20_filled": 63251,
  "ic_fluent_ratio_one_to_one_24_filled": 63252,
  "ic_fluent_receipt_add_20_filled": 63253,
  "ic_fluent_receipt_bag_20_filled": 63262,
  "ic_fluent_receipt_cube_20_filled": 63301,
  "ic_fluent_receipt_money_20_filled": 63302,
  "ic_fluent_record_12_filled": 63303,
  "ic_fluent_record_28_filled": 63309,
  "ic_fluent_record_32_filled": 63310,
  "ic_fluent_record_48_filled": 63311,
  "ic_fluent_record_stop_12_filled": 63344,
  "ic_fluent_record_stop_16_filled": 63345,
  "ic_fluent_record_stop_20_filled": 63346,
  "ic_fluent_record_stop_24_filled": 63347,
  "ic_fluent_record_stop_28_filled": 63348,
  "ic_fluent_record_stop_32_filled": 63356,
  "ic_fluent_record_stop_48_filled": 63357,
  "ic_fluent_ribbon_add_20_filled": 63358,
  "ic_fluent_ribbon_add_24_filled": 63359,
  "ic_fluent_server_20_filled": 63361,
  "ic_fluent_server_24_filled": 63364,
  "ic_fluent_shield_badge_20_filled": 63365,
  "ic_fluent_shopping_bag_16_filled": 63366,
  "ic_fluent_shopping_bag_20_filled": 63367,
  "ic_fluent_shopping_bag_24_filled": 63368,
  "ic_fluent_slide_multiple_search_20_filled": 63371,
  "ic_fluent_slide_multiple_search_24_filled": 63372,
  "ic_fluent_smartwatch_20_filled": 63373,
  "ic_fluent_smartwatch_24_filled": 63374,
  "ic_fluent_smartwatch_dot_20_filled": 63390,
  "ic_fluent_smartwatch_dot_24_filled": 63391,
  "ic_fluent_square_multiple_24_filled": 63396,
  "ic_fluent_stack_16_filled": 63397,
  "ic_fluent_stack_20_filled": 63402,
  "ic_fluent_stack_24_filled": 63422,
  "ic_fluent_subtract_circle_16_filled": 63423,
  "ic_fluent_subtract_circle_20_filled": 63432,
  "ic_fluent_subtract_circle_24_filled": 63433,
  "ic_fluent_subtract_circle_28_filled": 63436,
  "ic_fluent_subtract_circle_32_filled": 63437,
  "ic_fluent_tag_multiple_16_filled": 63438,
  "ic_fluent_target_arrow_16_filled": 63439,
  "ic_fluent_target_arrow_20_filled": 63440,
  "ic_fluent_text_bullet_list_square_edit_20_filled": 63441,
  "ic_fluent_text_bullet_list_square_edit_24_filled": 63442,
  "ic_fluent_tooltip_quote_20_filled": 63443,
  "ic_fluent_vehicle_car_profile_ltr_16_filled": 63461,
  "ic_fluent_vehicle_car_profile_rtl_16_filled": 63462,
  "ic_fluent_vehicle_truck_profile_16_filled": 63490,
  "ic_fluent_voicemail_arrow_back_16_filled": 63491,
  "ic_fluent_voicemail_arrow_forward_16_filled": 63492,
  "ic_fluent_voicemail_subtract_16_filled": 63509,
  "ic_fluent_wifi_warning_24_filled": 63510,
  "ic_fluent_window_edit_16_filled": 63517,
  "ic_fluent_arrow_sort_down_20_filled": 63518,
  "ic_fluent_arrow_sort_down_24_filled": 63530,
  "ic_fluent_arrow_sort_up_20_filled": 63531,
  "ic_fluent_arrow_sort_up_24_filled": 63546,
  "ic_fluent_arrow_turn_bidirectional_down_right_24_filled": 63547,
  "ic_fluent_arrow_turn_right_24_filled": 63569,
  "ic_fluent_book_question_mark_rtl_24_filled": 63570,
  "ic_fluent_brain_circuit_24_filled": 63571,
  "ic_fluent_building_bank_toolbox_24_filled": 63572,
  "ic_fluent_calendar_checkmark_28_filled": 63607,
  "ic_fluent_calendar_search_16_filled": 63608,
  "ic_fluent_call_park_32_filled": 63609,
  "ic_fluent_chat_bubbles_question_16_filled": 63680,
  "ic_fluent_chat_multiple_16_filled": 63681,
  "ic_fluent_chat_multiple_20_filled": 63712,
  "ic_fluent_chat_multiple_24_filled": 63723,
  "ic_fluent_checkmark_32_filled": 63724,
  "ic_fluent_checkmark_circle_32_filled": 58140,
  "ic_fluent_clipboard_bullet_list_ltr_16_filled": 58204,
  "ic_fluent_clipboard_bullet_list_rtl_16_filled": 58206,
  "ic_fluent_column_edit_20_filled": 58328,
  "ic_fluent_column_edit_24_filled": 58329,
  "ic_fluent_contact_card_28_filled": 58389,
  "ic_fluent_contact_card_32_filled": 58390,
  "ic_fluent_contact_card_48_filled": 58391,
  "ic_fluent_diagram_24_filled": 58561,
  "ic_fluent_dismiss_circle_32_filled": 58575,
  "ic_fluent_document_arrow_down_16_filled": 58603,
  "ic_fluent_document_bullet_list_clock_20_filled": 58613,
  "ic_fluent_document_bullet_list_clock_24_filled": 58614,
  "ic_fluent_document_bullet_list_off_24_filled": 58618,
  "ic_fluent_document_multiple_16_filled": 58667,
  "ic_fluent_document_pill_20_filled": 58680,
  "ic_fluent_document_pill_24_filled": 58681,
  "ic_fluent_document_save_20_filled": 58699,
  "ic_fluent_document_save_24_filled": 58700,
  "ic_fluent_door_16_filled": 58733,
  "ic_fluent_dual_screen_arrow_up_24_filled": 58788,
  "ic_fluent_dual_screen_closed_alert_24_filled": 58791,
  "ic_fluent_emoji_multiple_20_filled": 58847,
  "ic_fluent_emoji_multiple_24_filled": 58848,
  "ic_fluent_gantt_chart_20_filled": 59035,
  "ic_fluent_gantt_chart_24_filled": 59036,
  "ic_fluent_gift_card_add_24_filled": 59050,
  "ic_fluent_hand_draw_24_filled": 59109,
  "ic_fluent_image_arrow_back_24_filled": 59178,
  "ic_fluent_image_arrow_forward_24_filled": 59182,
  "ic_fluent_image_multiple_16_filled": 59185,
  "ic_fluent_image_reflection_24_filled": 59197,
  "ic_fluent_image_shadow_24_filled": 59199,
  "ic_fluent_mail_arrow_double_back_16_filled": 59316,
  "ic_fluent_mail_arrow_forward_16_filled": 59319,
  "ic_fluent_mail_attach_16_filled": 59322,
  "ic_fluent_more_horizontal_32_filled": 59445,
  "ic_fluent_more_vertical_32_filled": 59448,
  "ic_fluent_organization_16_filled": 59561,
  "ic_fluent_organization_32_filled": 59562,
  "ic_fluent_organization_48_filled": 59563,
  "ic_fluent_orientation_24_filled": 59566,
  "ic_fluent_people_list_16_filled": 59661,
  "ic_fluent_people_money_20_filled": 59667,
  "ic_fluent_people_money_24_filled": 59668,
  "ic_fluent_person_pill_20_filled": 59730,
  "ic_fluent_person_pill_24_filled": 59731,
  "ic_fluent_person_settings_16_filled": 59735,
  "ic_fluent_pivot_20_filled": 59807,
  "ic_fluent_pivot_24_filled": 59808,
  "ic_fluent_play_12_filled": 59809,
  "ic_fluent_print_add_24_filled": 59862,
  "ic_fluent_pulse_28_filled": 59878,
  "ic_fluent_receipt_add_24_filled": 59912,
  "ic_fluent_receipt_bag_24_filled": 59913,
  "ic_fluent_receipt_cube_24_filled": 59914,
  "ic_fluent_scan_object_20_filled": 60009,
  "ic_fluent_scan_object_24_filled": 60010,
  "ic_fluent_search_12_filled": 60035,
  "ic_fluent_search_32_filled": 60037,
  "ic_fluent_search_48_filled": 60038,
  "ic_fluent_share_16_filled": 60079,
  "ic_fluent_shield_badge_24_filled": 60111,
  "ic_fluent_shield_lock_16_filled": 60120,
  "ic_fluent_slide_eraser_16_filled": 60189,
  "ic_fluent_slide_eraser_20_filled": 60190,
  "ic_fluent_slide_grid_24_filled": 60193,
  "ic_fluent_square_16_filled": 60285,
  "ic_fluent_square_add_16_filled": 60291,
  "ic_fluent_square_hint_arrow_back_16_filled": 60310,
  "ic_fluent_steps_20_filled": 60345,
  "ic_fluent_steps_24_filled": 60346,
  "ic_fluent_tab_desktop_bottom_24_filled": 60391,
  "ic_fluent_tab_desktop_multiple_bottom_24_filled": 60393,
  "ic_fluent_task_list_square_add_20_filled": 60564,
  "ic_fluent_task_list_square_add_24_filled": 60565,
  "ic_fluent_task_list_square_ltr_20_filled": 60567,
  "ic_fluent_task_list_square_ltr_24_filled": 60568,
  "ic_fluent_task_list_square_rtl_20_filled": 60570,
  "ic_fluent_task_list_square_rtl_24_filled": 60571,
  "ic_fluent_text_align_distributed_evenly_24_filled": 60600,
  "ic_fluent_text_align_distributed_vertical_24_filled": 60602,
  "ic_fluent_text_align_justify_low_24_filled": 60604,
  "ic_fluent_textbox_more_24_filled": 60788,
  "ic_fluent_video_32_filled": 60912,
  "ic_fluent_video_48_filled": 60916,
  "ic_fluent_video_clip_16_filled": 60926,
  "ic_fluent_window_ad_person_20_filled": 61027,
  "ic_fluent_window_dev_edit_16_filled": 61041,
  "ic_fluent_arrow_autofit_height_dotted_24_filled": 57465,
  "ic_fluent_arrow_autofit_width_dotted_24_filled": 57470,
  "ic_fluent_multiselect_rtl_16_filled": 59484,
  "ic_fluent_animal_dog_16_filled": 57423,
  "ic_fluent_archive_settings_20_filled": 57456,
  "ic_fluent_arrow_clockwise_16_filled": 57514,
  "ic_fluent_arrow_clockwise_dashes_20_filled": 57518,
  "ic_fluent_arrow_clockwise_dashes_24_filled": 57519,
  "ic_fluent_arrow_counterclockwise_dashes_20_filled": 57526,
  "ic_fluent_arrow_counterclockwise_dashes_24_filled": 57527,
  "ic_fluent_arrow_export_ltr_16_filled": 57542,
  "ic_fluent_arrow_export_up_20_filled": 57547,
  "ic_fluent_arrow_export_up_24_filled": 57548,
  "ic_fluent_bin_full_20_filled": 57692,
  "ic_fluent_bin_full_24_filled": 57693,
  "ic_fluent_book_toolbox_24_filled": 57764,
  "ic_fluent_box_16_filled": 57806,
  "ic_fluent_braces_variable_20_filled": 57835,
  "ic_fluent_braces_variable_24_filled": 57836,
  "ic_fluent_briefcase_16_filled": 57853,
  "ic_fluent_briefcase_medical_16_filled": 57857,
  "ic_fluent_building_retail_20_filled": 57913,
  "ic_fluent_building_retail_money_20_filled": 57914,
  "ic_fluent_building_retail_money_24_filled": 57915,
  "ic_fluent_building_retail_shield_20_filled": 57917,
  "ic_fluent_building_retail_shield_24_filled": 57918,
  "ic_fluent_building_retail_toolbox_20_filled": 57919,
  "ic_fluent_building_retail_toolbox_24_filled": 57920,
  "ic_fluent_calculator_multiple_20_filled": 57930,
  "ic_fluent_calculator_multiple_24_filled": 57931,
  "ic_fluent_calendar_3_day_16_filled": 57932,
  "ic_fluent_calendar_arrow_right_16_filled": 57937,
  "ic_fluent_calendar_day_16_filled": 57944,
  "ic_fluent_calendar_info_20_filled": 57951,
  "ic_fluent_calendar_settings_16_filled": 57981,
  "ic_fluent_call_checkmark_24_filled": 57995,
  "ic_fluent_call_end_16_filled": 57998,
  "ic_fluent_camera_dome_16_filled": 58030,
  "ic_fluent_camera_dome_20_filled": 58031,
  "ic_fluent_camera_dome_24_filled": 58032,
  "ic_fluent_camera_dome_28_filled": 58033,
  "ic_fluent_camera_dome_48_filled": 58034,
  "ic_fluent_chat_12_filled": 58103,
  "ic_fluent_chevron_double_down_20_filled": 58174,
  "ic_fluent_chevron_double_left_20_filled": 58175,
  "ic_fluent_chevron_double_right_20_filled": 58176,
  "ic_fluent_clipboard_bullet_list_ltr_20_filled": 58205,
  "ic_fluent_clipboard_bullet_list_rtl_20_filled": 58207,
  "ic_fluent_clipboard_checkmark_20_filled": 58208,
  "ic_fluent_clipboard_checkmark_24_filled": 58209,
  "ic_fluent_clipboard_error_20_filled": 58216,
  "ic_fluent_clipboard_error_24_filled": 58217,
  "ic_fluent_clipboard_heart_24_filled": 58218,
  "ic_fluent_clipboard_task_20_filled": 58226,
  "ic_fluent_clipboard_task_24_f
Download .txt
gitextract_ci3gb112/

├── .github/
│   ├── FUNDING.yml
│   ├── ISSUE_TEMPLATE/
│   │   ├── 01. problem.yml
│   │   ├── 02. feature.yml
│   │   └── config.yml
│   └── workflows/
│       └── build.yml
├── .gitignore
├── .vscode/
│   └── settings.json
├── Directory.Build.props
├── Directory.Build.targets
├── LICENSE.md
├── README.md
├── assets/
│   └── others/
│       ├── FluentSystemIcons-Filled.json
│       ├── FluentSystemIcons-Regular.json
│       ├── Segoe Fluent Icons.txt
│       └── iNKORE.Pulic.snk
├── docs/
│   ├── index.md
│   └── promotions.md
├── iNKORE.UI.WPF.Modern.sln
├── installer/
│   └── Gallery.aip
├── libraries/
│   ├── Windows.Foundation.FoundationContract.winmd
│   ├── Windows.Foundation.UniversalApiContract.winmd
│   └── Windows.WinMD
├── samples/
│   ├── Acrylic10Example/
│   │   ├── Acrylic10Example.csproj
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── ButtonsOnTitlebar/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── ButtonsOnTitlebar.csproj
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── ExamplePhotoTaker/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── ExamplePhotoTaker.csproj
│   │   ├── MainWindow.xaml
│   │   └── MainWindow.xaml.cs
│   ├── FlyoutExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── FlyoutExample.csproj
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── 完整源码见 Github 仓库.txt
│   ├── NavigationViewExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── NavigationViewExample.csproj
│   │   └── Pages/
│   │       ├── AppsPage.xaml
│   │       ├── AppsPage.xaml.cs
│   │       ├── GamesPage.xaml
│   │       ├── GamesPage.xaml.cs
│   │       ├── HomePage.xaml
│   │       └── HomePage.xaml.cs
│   ├── NoAppXamlTest/
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── NoAppXamlTest.csproj
│   │   └── Program.cs
│   ├── SettingsNavigationTest/
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AppearancePage.xaml
│   │   ├── AppearancePage.xaml.cs
│   │   ├── MainPage.xaml
│   │   ├── MainPage.xaml.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── SettingsNavigationTest.csproj
│   │   └── packages.config
│   ├── StarterKit/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── StarterKit.csproj
│   ├── TransparentNavigationViewExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── TransparentNavigationViewExample.csproj
│   ├── WindowExample/
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── AssemblyInfo.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   └── WindowExample.csproj
│   └── WpfApp1/
│       ├── App.xaml
│       ├── App.xaml.cs
│       ├── AssemblyInfo.cs
│       ├── MainWindow.xaml
│       ├── MainWindow.xaml.cs
│       ├── WpfApp1 - Backup.csproj
│       └── WpfApp1.csproj
├── source/
│   ├── iNKORE.UI.WPF.Modern/
│   │   ├── ColorPaletteResources.cs
│   │   ├── Common/
│   │   │   ├── AnimatedIconSource.cs
│   │   │   ├── BitmapIconSource.cs
│   │   │   ├── Converters/
│   │   │   │   ├── BackdropIsSupportedConverter.cs
│   │   │   │   ├── IconSourceToIconElementConverter.cs
│   │   │   │   └── LocalizationConverter.cs
│   │   │   ├── EventRevoker.cs
│   │   │   ├── FontIconSource.cs
│   │   │   ├── IconKeys/
│   │   │   │   ├── FluentSystemIcons.Filled.cs
│   │   │   │   ├── FluentSystemIcons.Regular.cs
│   │   │   │   ├── FluentSystemIcons.cs
│   │   │   │   ├── FontDictionary.cs
│   │   │   │   ├── SegoeFluentIcons.Regular.cs
│   │   │   │   └── SegoeFluentIcons.cs
│   │   │   ├── IconSource.cs
│   │   │   ├── ImageIconSource.cs
│   │   │   ├── PasswordRevealMode.cs
│   │   │   ├── PathIconSource.cs
│   │   │   ├── RatingItemFontInfo.cs
│   │   │   ├── RatingItemInfo.cs
│   │   │   ├── RatingItemPathInfo.cs
│   │   │   ├── ResourceAccessor.cs
│   │   │   ├── ShadowAssist.cs
│   │   │   ├── SimpleVisualStateManager.cs
│   │   │   ├── SymbolIconSource.cs
│   │   │   ├── TypedEventHandler.cs
│   │   │   ├── UIApplication.cs
│   │   │   ├── VisualStateGroupHelper.cs
│   │   │   └── VisualStates.cs
│   │   ├── Controls/
│   │   │   ├── AcrylicElement.cs
│   │   │   ├── AcrylicPanel.cs
│   │   │   ├── AcrylicPanel.xaml
│   │   │   ├── AnimatedBackVisualSource.cs
│   │   │   ├── AnimatedIcon.cs
│   │   │   ├── AnimatedVisualSource.cs
│   │   │   ├── AnimatedVisualSource.xaml
│   │   │   ├── BitmapIcon.cs
│   │   │   ├── ContentPresenterEx.cs
│   │   │   ├── DropShadowPanel.cs
│   │   │   ├── ElevationBorder.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── FontIcon.cs
│   │   │   ├── FontIconFallback.cs
│   │   │   ├── Frame.cs
│   │   │   ├── Frame.xaml
│   │   │   ├── Helpers/
│   │   │   │   ├── CalendarHelper.cs
│   │   │   │   ├── ClipHelper.cs
│   │   │   │   ├── ColumnDefinitionHelper.cs
│   │   │   │   ├── ComboBoxHelper.cs
│   │   │   │   ├── ControlHelper.cs
│   │   │   │   ├── CustomPopupPlacementHelper.cs
│   │   │   │   ├── DataGridHelper.cs
│   │   │   │   ├── DataGridRowHelper.cs
│   │   │   │   ├── DatePickerHelper.cs
│   │   │   │   ├── DecoratorHelper.cs
│   │   │   │   ├── ExpanderAnimationsHelper.cs
│   │   │   │   ├── ExpanderHelper.cs
│   │   │   │   ├── FocusVisualHelper.cs
│   │   │   │   ├── FullscreenHelper.cs
│   │   │   │   ├── HyperlinkHelper.cs
│   │   │   │   ├── ListViewHelper.cs
│   │   │   │   ├── MultiSelectHelper.cs
│   │   │   │   ├── OpeningAnimationHelper.cs
│   │   │   │   ├── PasswordBoxHelper.cs
│   │   │   │   ├── PivotHelper.cs
│   │   │   │   ├── PressHelper.cs
│   │   │   │   ├── RichTextBoxHelper.cs
│   │   │   │   ├── RowDefinitionHelper.cs
│   │   │   │   ├── ScrollBarHelper.cs
│   │   │   │   ├── ScrollBarThumbHelper.cs
│   │   │   │   ├── ScrollViewerHelper.cs
│   │   │   │   ├── SliderAutoToolTipHelper.cs
│   │   │   │   ├── TabControlHelper.cs
│   │   │   │   ├── TabItemHelper.cs
│   │   │   │   ├── TextBlockHelper.cs
│   │   │   │   ├── TextBoxHelper.cs
│   │   │   │   ├── TextControlContentHostHelper.cs
│   │   │   │   ├── TreeViewItemHelper.cs
│   │   │   │   ├── ValidationHelper.cs
│   │   │   │   └── WindowHelper.cs
│   │   │   ├── IconAndText.cs
│   │   │   ├── IconAndText.xaml
│   │   │   ├── IconElement.cs
│   │   │   ├── ImageIcon.cs
│   │   │   ├── ListViewBaseHeaderItem.cs
│   │   │   ├── ListViewHeaderItem.cs
│   │   │   ├── Page.cs
│   │   │   ├── Page.xaml
│   │   │   ├── PathIcon.cs
│   │   │   ├── Primitives/
│   │   │   │   ├── AutoPanningMode.cs
│   │   │   │   ├── BackRequestedEventArgs.cs
│   │   │   │   ├── BindingProxy.cs
│   │   │   │   ├── CoreApplicationViewTitleBar.cs
│   │   │   │   ├── DataGridCellPresenter.cs
│   │   │   │   ├── DebugVisualStateManager.cs
│   │   │   │   ├── MaximizedWindowFixer.cs
│   │   │   │   ├── MenuPopup.cs
│   │   │   │   ├── PanelHelper.cs
│   │   │   │   ├── PivotHeaderScrollViewer.cs
│   │   │   │   ├── PopupEx.cs
│   │   │   │   ├── PopupPositioner.cs
│   │   │   │   ├── ScrollingIndicatorMode.cs
│   │   │   │   ├── ThemeShadowChrome.cs
│   │   │   │   ├── TitleBar.cs
│   │   │   │   ├── TitleBarButton.cs
│   │   │   │   ├── TitleBarButton.xaml
│   │   │   │   ├── TitleBarControl.cs
│   │   │   │   ├── TitleBarControl.xaml
│   │   │   │   └── VisualStateGroupListener.cs
│   │   │   ├── ProjectBadge.cs
│   │   │   ├── ProjectBadge.xaml
│   │   │   ├── ScrollInfoAdapter.cs
│   │   │   ├── ScrollViewerBehavior.cs
│   │   │   ├── ScrollViewerEx.cs
│   │   │   ├── SimpleStackPanel.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── SymbolIcon.cs
│   │   │   ├── TextContextMenu.cs
│   │   │   ├── ThumbEx.cs
│   │   │   ├── ThumbEx.xaml
│   │   │   └── XamlControlsResources.cs
│   │   ├── Helpers/
│   │   │   ├── ColorsHelper.cs
│   │   │   ├── Helper.cs
│   │   │   ├── IconHelper.cs
│   │   │   ├── PackUriHelper.cs
│   │   │   ├── PointUtil.cs
│   │   │   ├── ResourceDictionaryHelper.cs
│   │   │   ├── Styles/
│   │   │   │   ├── AcrylicHelper.cs
│   │   │   │   ├── BackdropHelper.cs
│   │   │   │   ├── CornerHelper.cs
│   │   │   │   └── SnapLayout.cs
│   │   │   ├── ThemeResourceHelper.cs
│   │   │   ├── Utilities.cs
│   │   │   └── WinRTColorHelper.cs
│   │   ├── Input/
│   │   │   ├── FocusInputDeviceKind.cs
│   │   │   ├── FocusManagerEx.cs
│   │   │   ├── GettingFocusEventArgs.cs
│   │   │   ├── GettingFocusHelper.cs
│   │   │   ├── InputHelper.cs
│   │   │   ├── TappedEventHandler.cs
│   │   │   └── TappedRoutedEventArgs.cs
│   │   ├── Markup/
│   │   │   ├── AcrylicBrushExtension.cs
│   │   │   ├── DynamicColorExtension.cs
│   │   │   ├── KeyTimeExtension.cs
│   │   │   ├── StaticColorExtension.cs
│   │   │   ├── StaticResourceExtension.cs
│   │   │   ├── TextContextMenuExtension.cs
│   │   │   └── ThemeResourceExtension.cs
│   │   ├── Media/
│   │   │   ├── Animation/
│   │   │   │   ├── CubicBezierEase.cs
│   │   │   │   ├── DrillInNavigationTransitionInfo.cs
│   │   │   │   ├── EntranceNavigationTransitionInfo.cs
│   │   │   │   ├── FadeInThemeAnimation.cs
│   │   │   │   ├── FadeOutThemeAnimation.cs
│   │   │   │   ├── NavigationAnimation.cs
│   │   │   │   ├── NavigationThemeTransition.cs
│   │   │   │   ├── NavigationTransitionInfo.cs
│   │   │   │   ├── SlideNavigationTransitionInfo.cs
│   │   │   │   ├── SuppressNavigationTransitionInfo.cs
│   │   │   │   ├── Transition.cs
│   │   │   │   └── TransitionCollection.cs
│   │   │   ├── ColorPalette/
│   │   │   │   ├── ColorPalette.cs
│   │   │   │   ├── ColorPaletteEntry.cs
│   │   │   │   └── IColorPaletteEntry.cs
│   │   │   └── Utils/
│   │   │       ├── ColorBlending.cs
│   │   │       ├── ColorScale.cs
│   │   │       ├── ColorTypes.cs
│   │   │       ├── ColorUtils.cs
│   │   │       └── MathUtils.cs
│   │   ├── Native/
│   │   │   ├── DWMAPI.cs
│   │   │   ├── Enums.cs
│   │   │   ├── ExternDll.cs
│   │   │   ├── HT.cs
│   │   │   ├── NativeMethodsCLR.cs
│   │   │   ├── SafeNativeMethodsCLR.cs
│   │   │   ├── UnsafeNativeMethodsCLR.cs
│   │   │   └── User32.cs
│   │   ├── NativeMethods.txt
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── AssemblyInfoCommon.cs
│   │   │   └── DesignTimeResources.xaml
│   │   ├── ResourceDictionaryEx.cs
│   │   ├── Resources/
│   │   │   ├── Fonts/
│   │   │   │   ├── Fonts.xaml
│   │   │   │   └── License - Fluent System Icons.txt
│   │   │   └── Strings/
│   │   │       ├── Strings.Designer.cs
│   │   │       ├── Strings.cs-CZ.resx
│   │   │       ├── Strings.de-DE.resx
│   │   │       ├── Strings.es-ES.resx
│   │   │       ├── Strings.es-MX.resx
│   │   │       ├── Strings.fa-IR.resx
│   │   │       ├── Strings.fr-CA.resx
│   │   │       ├── Strings.fr-FR.resx
│   │   │       ├── Strings.it-IT.resx
│   │   │       ├── Strings.ja-JP.resx
│   │   │       ├── Strings.ko-KR.resx
│   │   │       ├── Strings.pl-PL.resx
│   │   │       ├── Strings.pt-BR.resx
│   │   │       ├── Strings.pt-PT.resx
│   │   │       ├── Strings.resx
│   │   │       ├── Strings.ru-RU.resx
│   │   │       ├── Strings.tr-TR.resx
│   │   │       ├── Strings.zh-CN.resx
│   │   │       └── Strings.zh-TW.resx
│   │   ├── ThemeDictionary.cs
│   │   ├── ThemeKeys.Light.cs
│   │   ├── ThemeKeys.ThemeResources.cs
│   │   ├── ThemeKeys.cs
│   │   ├── ThemeManager.cs
│   │   ├── ThemeResources.cs
│   │   ├── Themes/
│   │   │   ├── Controls/
│   │   │   │   ├── AutoSuggestBox.xaml
│   │   │   │   ├── Button.xaml
│   │   │   │   ├── Calendar.xaml
│   │   │   │   ├── CheckBox.xaml
│   │   │   │   ├── ComboBox.xaml
│   │   │   │   ├── CommandBar.xaml
│   │   │   │   ├── ContextMenu.xaml
│   │   │   │   ├── DataGrid.xaml
│   │   │   │   ├── DatePicker.xaml
│   │   │   │   ├── Expander.xaml
│   │   │   │   ├── GridSplitter.xaml
│   │   │   │   ├── GroupBox.xaml
│   │   │   │   ├── GroupItem.xaml
│   │   │   │   ├── Hyperlink.xaml
│   │   │   │   ├── InfoBar.xaml
│   │   │   │   ├── Label.xaml
│   │   │   │   ├── ListBox.xaml
│   │   │   │   ├── ListView.xaml
│   │   │   │   ├── Menu.xaml
│   │   │   │   ├── MenuItem.xaml
│   │   │   │   ├── NavigationBackButton.xaml
│   │   │   │   ├── NavigationView.xaml
│   │   │   │   ├── PasswordBox.xaml
│   │   │   │   ├── PipsPager.xaml
│   │   │   │   ├── Pivot.xaml
│   │   │   │   ├── ProgressBar.xaml
│   │   │   │   ├── RadioButton.xaml
│   │   │   │   ├── RatingControl.xaml
│   │   │   │   ├── RepeatButton.xaml
│   │   │   │   ├── ResizeGrip.xaml
│   │   │   │   ├── RichTextBox.xaml
│   │   │   │   ├── ScrollBar.xaml
│   │   │   │   ├── ScrollViewer.xaml
│   │   │   │   ├── Slider.xaml
│   │   │   │   ├── StatusBar.xaml
│   │   │   │   ├── TabControl.xaml
│   │   │   │   ├── TeachingTip.xaml
│   │   │   │   ├── TextBox.xaml
│   │   │   │   ├── TextStyles.xaml
│   │   │   │   ├── TimePicker.xaml
│   │   │   │   ├── ToggleButton.xaml
│   │   │   │   ├── ToolBar.xaml
│   │   │   │   ├── ToolTip.xaml
│   │   │   │   ├── TreeView.xaml
│   │   │   │   └── Window.xaml
│   │   │   ├── ControlsResources.xaml
│   │   │   ├── DensityStyles/
│   │   │   │   └── Compact.xaml
│   │   │   ├── DesignTime/
│   │   │   │   ├── Design.cs
│   │   │   │   ├── DesignTimeResources.xaml
│   │   │   │   ├── IntellisenseResources.cs
│   │   │   │   ├── IntellisenseResourcesBase.cs
│   │   │   │   ├── ResourceKeys.xaml
│   │   │   │   └── SystemColors.xaml
│   │   │   ├── FontIconFallback.xaml
│   │   │   ├── Generic.xaml
│   │   │   ├── ListViewHeaderItem.xaml
│   │   │   ├── Schemes/
│   │   │   │   ├── Dark.xaml
│   │   │   │   ├── HighContrast.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── TextContextMenu.xaml
│   │   │   └── ThemeResources.xaml
│   │   ├── UISettingsResources.cs
│   │   └── iNKORE.UI.WPF.Modern.csproj
│   ├── iNKORE.UI.WPF.Modern.Controls/
│   │   ├── .editorconfig
│   │   ├── Common/
│   │   │   ├── CollectionHelper.cs
│   │   │   ├── ControlStrings.cs
│   │   │   ├── CppWinRTHelpers.cs
│   │   │   ├── DependencyPropertyChangedCallback.cs
│   │   │   ├── EmptyEnumerator.cs
│   │   │   ├── EventRevokers.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── IControlProtected.cs
│   │   │   ├── LightDismissOverlayMode.cs
│   │   │   ├── ListExtensions.cs
│   │   │   ├── PopupHelper.cs
│   │   │   ├── PopupRepositionHelper.cs
│   │   │   ├── RoutedEventHandlerRevoker.cs
│   │   │   ├── SelectorHelper.cs
│   │   │   ├── SharedHelpers.cs
│   │   │   └── Utils.cs
│   │   ├── Controls/
│   │   │   ├── Community/
│   │   │   │   └── SettingsControls/
│   │   │   │       ├── SettingsCard/
│   │   │   │       │   ├── SettingsCard.Properties.cs
│   │   │   │       │   ├── SettingsCard.cs
│   │   │   │       │   ├── SettingsCard.xaml
│   │   │   │       │   └── SettingsCardAutomationPeer.cs
│   │   │   │       └── SettingsExpander/
│   │   │   │           ├── SettingsExpander.Events.cs
│   │   │   │           ├── SettingsExpander.ItemsControl.cs
│   │   │   │           ├── SettingsExpander.Properties.cs
│   │   │   │           ├── SettingsExpander.cs
│   │   │   │           ├── SettingsExpander.xaml
│   │   │   │           ├── SettingsExpanderAutomationPeer.cs
│   │   │   │           └── SettingsExpanderItemStyleSelector.cs
│   │   │   ├── Extended/
│   │   │   │   └── MessageBox/
│   │   │   │       ├── LocalizedDialogCommands.cs
│   │   │   │       ├── MessageBox.Helper.cs
│   │   │   │       ├── MessageBox.cs
│   │   │   │       ├── MessageBox.xaml
│   │   │   │       ├── MessageBoxButtonClickDeferral.cs
│   │   │   │       ├── MessageBoxButtonClickEventArgs.cs
│   │   │   │       ├── MessageBoxClosedEventArgs.cs
│   │   │   │       ├── MessageBoxClosingDeferral.cs
│   │   │   │       ├── MessageBoxClosingEventArgs.cs
│   │   │   │       ├── MessageBoxImageExtensions.cs
│   │   │   │       ├── MessageBoxOpenedEventArgs.cs
│   │   │   │       └── MessageBoxTemplateSettings.cs
│   │   │   └── Windows/
│   │   │       ├── AutoSuggestBox/
│   │   │       │   ├── AutoSuggestBox.cs
│   │   │       │   ├── AutoSuggestBox.properties.cs
│   │   │       │   ├── AutoSuggestBox.xaml
│   │   │       │   ├── AutoSuggestBoxHelper.cs
│   │   │       │   ├── AutoSuggestBoxListView.cs
│   │   │       │   ├── AutoSuggestBoxListViewItem.cs
│   │   │       │   ├── AutoSuggestBoxQuerySubmittedEventArgs.cs
│   │   │       │   ├── AutoSuggestBoxSuggestionChosenEventArgs.cs
│   │   │       │   └── AutoSuggestBoxTextChangedEventArgs.cs
│   │   │       ├── CommandBar/
│   │   │       │   ├── AppBarButton.cs
│   │   │       │   ├── AppBarButton.xaml
│   │   │       │   ├── AppBarElementApplicationViewState.cs
│   │   │       │   ├── AppBarElementContainer.cs
│   │   │       │   ├── AppBarElementContainer.xaml
│   │   │       │   ├── AppBarElementProperties.cs
│   │   │       │   ├── AppBarElementVisualStateManager.cs
│   │   │       │   ├── AppBarRepeatButton.cs
│   │   │       │   ├── AppBarRepeatButton.xaml
│   │   │       │   ├── AppBarSeparator.cs
│   │   │       │   ├── AppBarSeparator.xaml
│   │   │       │   ├── AppBarToggleButton.cs
│   │   │       │   ├── AppBarToggleButton.xaml
│   │   │       │   ├── CommandBar.cs
│   │   │       │   ├── CommandBar.xaml
│   │   │       │   ├── CommandBarDefaultLabelPosition.cs
│   │   │       │   ├── CommandBarLabelPosition.cs
│   │   │       │   ├── CommandBarOverflowButtonVisibility.cs
│   │   │       │   ├── CommandBarOverflowPanel.cs
│   │   │       │   ├── CommandBarOverflowPresenter.cs
│   │   │       │   ├── CommandBarPanel.cs
│   │   │       │   ├── CommandBarToolBar.cs
│   │   │       │   └── ICommandBarElement.cs
│   │   │       ├── CommandBarFlyout/
│   │   │       │   ├── CommandBarFlyout.cs
│   │   │       │   ├── CommandBarFlyout.xaml
│   │   │       │   ├── CommandBarFlyoutCommandBar.cs
│   │   │       │   ├── CommandBarFlyoutCommandBarTemplateSettings.cs
│   │   │       │   ├── CommandBarFlyoutCommandBarTemplateSettingsProxy.cs
│   │   │       │   └── CommandBarFlyoutToolBar.cs
│   │   │       ├── ContentDialog/
│   │   │       │   ├── ContentDialog.cs
│   │   │       │   ├── ContentDialog.xaml
│   │   │       │   ├── ContentDialogButton.cs
│   │   │       │   ├── ContentDialogButtonClickDeferral.cs
│   │   │       │   ├── ContentDialogButtonClickEventArgs.cs
│   │   │       │   ├── ContentDialogClosedEventArgs.cs
│   │   │       │   ├── ContentDialogClosingDeferral.cs
│   │   │       │   ├── ContentDialogClosingEventArgs.cs
│   │   │       │   ├── ContentDialogOpenedEventArgs.cs
│   │   │       │   ├── ContentDialogPlacement.cs
│   │   │       │   └── ContentDialogResult.cs
│   │   │       ├── DropDownButton/
│   │   │       │   ├── DropDownButton.cs
│   │   │       │   ├── DropDownButton.xaml
│   │   │       │   └── DropDownButtonAutomationPeer.cs
│   │   │       ├── FlipView/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── FlipView.cs
│   │   │       │   ├── FlipView.xaml
│   │   │       │   └── FlipViewItem.cs
│   │   │       ├── Flyout/
│   │   │       │   ├── ContextFlyoutService.cs
│   │   │       │   ├── EventRevokers.cs
│   │   │       │   ├── Flyout.cs
│   │   │       │   ├── FlyoutBase.cs
│   │   │       │   ├── FlyoutBaseClosingEventArgs.cs
│   │   │       │   ├── FlyoutPlacementMode.cs
│   │   │       │   ├── FlyoutPresenter.cs
│   │   │       │   ├── FlyoutPresenter.xaml
│   │   │       │   ├── FlyoutService.cs
│   │   │       │   └── FlyoutShowMode.cs
│   │   │       ├── HyperlinkButton/
│   │   │       │   ├── HyperlinkButton.cs
│   │   │       │   ├── HyperlinkButton.xaml
│   │   │       │   └── HyperlinkButtonAutomationPeer.cs
│   │   │       ├── InfoBadge/
│   │   │       │   ├── InfoBadge.cs
│   │   │       │   ├── InfoBadge.xaml
│   │   │       │   └── InfoBadgeTemplateSettings.cs
│   │   │       ├── InfoBar/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── InfoBar.cs
│   │   │       │   ├── InfoBar.properties.cs
│   │   │       │   ├── InfoBar.xaml
│   │   │       │   ├── InfoBarAutomationPeer.cs
│   │   │       │   ├── InfoBarClosedEventArgs.cs
│   │   │       │   ├── InfoBarClosingEventArgs.cs
│   │   │       │   ├── InfoBarPanel.cs
│   │   │       │   ├── InfoBarTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.as-IN.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-IN.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.cy-GB.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.ga-IE.resx
│   │   │       │       ├── Resources.gd-gb.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.gu-IN.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.hy-AM.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.kok-IN.resx
│   │   │       │       ├── Resources.lb-LU.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mi-NZ.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.mr-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.mt-MT.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.ne-NP.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.or-IN.resx
│   │   │       │       ├── Resources.pa-IN.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.quz-PE.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Cyrl-BA.resx
│   │   │       │       ├── Resources.sr-Cyrl-RS.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.tt-RU.resx
│   │   │       │       ├── Resources.ug-CN.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.ur-PK.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── InputBox/
│   │   │       │   ├── InputBox.cs
│   │   │       │   ├── InputBoxContent.xaml
│   │   │       │   └── InputBoxContent.xaml.cs
│   │   │       ├── LayoutPanel/
│   │   │       │   ├── LayoutPanel.cs
│   │   │       │   └── LayoutPanelLayoutContext.cs
│   │   │       ├── ListView/
│   │   │       │   ├── GridView.cs
│   │   │       │   ├── GridView.xaml
│   │   │       │   ├── GridViewHeaderItem.cs
│   │   │       │   ├── GridViewItem.cs
│   │   │       │   ├── ItemClickEventHandler.cs
│   │   │       │   ├── ListView.cs
│   │   │       │   ├── ListView.xaml
│   │   │       │   ├── ListViewBase.cs
│   │   │       │   ├── ListViewBaseItem.cs
│   │   │       │   └── ListViewItem.cs
│   │   │       ├── MediaPlayerElement/
│   │   │       │   ├── MediaElementEx.cs
│   │   │       │   ├── MediaPlayerElement.cs
│   │   │       │   ├── MediaPlayerElement.xaml
│   │   │       │   ├── MediaTransportControls.cs
│   │   │       │   ├── MediaTransportControls.properties.cs
│   │   │       │   ├── MediaTransportControls.xaml
│   │   │       │   └── MediaTransportControlsTemplateSettings.cs
│   │   │       ├── MenuFlyout/
│   │   │       │   ├── MenuFlyout.cs
│   │   │       │   ├── MenuFlyout.xaml
│   │   │       │   └── MenuFlyoutPresenter.cs
│   │   │       ├── NavigationView/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── NavigationView.cs
│   │   │       │   ├── NavigationView.properties.cs
│   │   │       │   ├── NavigationView.xaml
│   │   │       │   ├── NavigationViewAutomationPeer.cs
│   │   │       │   ├── NavigationViewBackRequestedEventArgs.cs
│   │   │       │   ├── NavigationViewDisplayModeChangedEventArgs.cs
│   │   │       │   ├── NavigationViewHelper.cs
│   │   │       │   ├── NavigationViewItem.cs
│   │   │       │   ├── NavigationViewItem.properties.cs
│   │   │       │   ├── NavigationViewItemAutomationPeer.cs
│   │   │       │   ├── NavigationViewItemBase.cs
│   │   │       │   ├── NavigationViewItemCollapsedEventArgs.cs
│   │   │       │   ├── NavigationViewItemExpandingEventArgs.cs
│   │   │       │   ├── NavigationViewItemHeader.cs
│   │   │       │   ├── NavigationViewItemInvokedEventArgs.cs
│   │   │       │   ├── NavigationViewItemPresenter.cs
│   │   │       │   ├── NavigationViewItemSeparator.cs
│   │   │       │   ├── NavigationViewItemsFactory.cs
│   │   │       │   ├── NavigationViewPaneClosingEventArgs.cs
│   │   │       │   ├── NavigationViewSelectionChangedEventArgs.cs
│   │   │       │   ├── NavigationViewTemplateSettings.cs
│   │   │       │   ├── SplitDataSourceBase.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.be-BY.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-BD.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.ha-Latn-NG.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.sw-KE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   └── TopNavigationViewDataProvider.cs
│   │   │       ├── NumberBox/
│   │   │       │   ├── DefaultNumberBoxNumberFormatter.cs
│   │   │       │   ├── DefaultNumberRounder.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── INumberBoxNumberFormatter.cs
│   │   │       │   ├── NumberBox.cs
│   │   │       │   ├── NumberBox.properties.cs
│   │   │       │   ├── NumberBox.xaml
│   │   │       │   ├── NumberBoxAutomationPeer.cs
│   │   │       │   ├── NumberBoxParser.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ParallaxView/
│   │   │       │   ├── ParallaxView.cs
│   │   │       │   └── ParallaxView.xaml
│   │   │       ├── PersonPicture/
│   │   │       │   ├── InitialsGenerator.cs
│   │   │       │   ├── PersonPicture.cs
│   │   │       │   ├── PersonPicture.properties.cs
│   │   │       │   ├── PersonPicture.xaml
│   │   │       │   ├── PersonPictureAutomationPeer.cs
│   │   │       │   ├── PersonPictureTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── PipsPager/
│   │   │       │   ├── Enum.cs
│   │   │       │   ├── PipsPager.cs
│   │   │       │   ├── PipsPager.properties.cs
│   │   │       │   ├── PipsPager.xaml
│   │   │       │   ├── PipsPagerAutomationPeer.cs
│   │   │       │   ├── PipsPagerSelectedIndexChangedEventArgs.cs
│   │   │       │   ├── PipsPagerTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.as-IN.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-IN.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.cy-GB.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.ga-IE.resx
│   │   │       │       ├── Resources.gd-gb.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.gu-IN.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.hy-AM.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.kok-IN.resx
│   │   │       │       ├── Resources.lb-LU.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mi-NZ.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.mr-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.mt-MT.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.ne-NP.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.or-IN.resx
│   │   │       │       ├── Resources.pa-IN.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.quz-PE.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Cyrl-BA.resx
│   │   │       │       ├── Resources.sr-Cyrl-RS.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.tt-RU.resx
│   │   │       │       ├── Resources.ug-CN.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.ur-PK.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ProgressBar/
│   │   │       │   ├── ProgressBar.cs
│   │   │       │   ├── ProgressBar.xaml
│   │   │       │   ├── ProgressBarAutomationPeer.cs
│   │   │       │   ├── ProgressBarTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── ProgressRing/
│   │   │       │   ├── ProgressRing.cs
│   │   │       │   ├── ProgressRing.xaml
│   │   │       │   ├── ProgressRingAutomationPeer.cs
│   │   │       │   ├── ProgressRingPresenter.cs
│   │   │       │   ├── ProgressRingPresenterTemplateSettings.cs
│   │   │       │   ├── ProgressRingTemplateSettings.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── RadioButtons/
│   │   │       │   ├── ColumnMajorUniformToLargestGridLayout.cs
│   │   │       │   ├── RadioButtons.cs
│   │   │       │   ├── RadioButtons.xaml
│   │   │       │   ├── RadioButtonsElementFactory.cs
│   │   │       │   └── RadioButtonsTestHooks.cs
│   │   │       ├── RadioMenuItem/
│   │   │       │   ├── RadioMenuItem.cs
│   │   │       │   └── RadioMenuItem.xaml
│   │   │       ├── RatingControl/
│   │   │       │   ├── RatingControl.cs
│   │   │       │   ├── RatingControl.properties.cs
│   │   │       │   ├── RatingControl.xaml
│   │   │       │   ├── RatingControlAutomationPeer.cs
│   │   │       │   ├── RatingItemImageInfo.cs
│   │   │       │   └── Strings/
│   │   │       │       ├── Resources.af-ZA.resx
│   │   │       │       ├── Resources.am-ET.resx
│   │   │       │       ├── Resources.ar-SA.resx
│   │   │       │       ├── Resources.az-Latn-AZ.resx
│   │   │       │       ├── Resources.be-BY.resx
│   │   │       │       ├── Resources.bg-BG.resx
│   │   │       │       ├── Resources.bn-BD.resx
│   │   │       │       ├── Resources.bs-Latn-BA.resx
│   │   │       │       ├── Resources.ca-ES.resx
│   │   │       │       ├── Resources.cs-CZ.resx
│   │   │       │       ├── Resources.da-DK.resx
│   │   │       │       ├── Resources.de-DE.resx
│   │   │       │       ├── Resources.el-GR.resx
│   │   │       │       ├── Resources.en-GB.resx
│   │   │       │       ├── Resources.es-ES.resx
│   │   │       │       ├── Resources.es-MX.resx
│   │   │       │       ├── Resources.et-EE.resx
│   │   │       │       ├── Resources.eu-ES.resx
│   │   │       │       ├── Resources.fa-IR.resx
│   │   │       │       ├── Resources.fi-FI.resx
│   │   │       │       ├── Resources.fil-PH.resx
│   │   │       │       ├── Resources.fr-CA.resx
│   │   │       │       ├── Resources.fr-FR.resx
│   │   │       │       ├── Resources.gl-ES.resx
│   │   │       │       ├── Resources.ha-Latn-NG.resx
│   │   │       │       ├── Resources.he-IL.resx
│   │   │       │       ├── Resources.hi-IN.resx
│   │   │       │       ├── Resources.hr-HR.resx
│   │   │       │       ├── Resources.hu-HU.resx
│   │   │       │       ├── Resources.id-ID.resx
│   │   │       │       ├── Resources.is-IS.resx
│   │   │       │       ├── Resources.it-IT.resx
│   │   │       │       ├── Resources.ja-JP.resx
│   │   │       │       ├── Resources.ka-GE.resx
│   │   │       │       ├── Resources.kk-KZ.resx
│   │   │       │       ├── Resources.km-KH.resx
│   │   │       │       ├── Resources.kn-IN.resx
│   │   │       │       ├── Resources.ko-KR.resx
│   │   │       │       ├── Resources.lo-LA.resx
│   │   │       │       ├── Resources.lt-LT.resx
│   │   │       │       ├── Resources.lv-LV.resx
│   │   │       │       ├── Resources.mk-MK.resx
│   │   │       │       ├── Resources.ml-IN.resx
│   │   │       │       ├── Resources.ms-MY.resx
│   │   │       │       ├── Resources.nb-NO.resx
│   │   │       │       ├── Resources.nl-NL.resx
│   │   │       │       ├── Resources.nn-NO.resx
│   │   │       │       ├── Resources.pl-PL.resx
│   │   │       │       ├── Resources.pt-BR.resx
│   │   │       │       ├── Resources.pt-PT.resx
│   │   │       │       ├── Resources.resx
│   │   │       │       ├── Resources.ro-RO.resx
│   │   │       │       ├── Resources.ru-RU.resx
│   │   │       │       ├── Resources.sk-SK.resx
│   │   │       │       ├── Resources.sl-SI.resx
│   │   │       │       ├── Resources.sq-AL.resx
│   │   │       │       ├── Resources.sr-Latn-RS.resx
│   │   │       │       ├── Resources.sv-SE.resx
│   │   │       │       ├── Resources.sw-KE.resx
│   │   │       │       ├── Resources.ta-IN.resx
│   │   │       │       ├── Resources.te-IN.resx
│   │   │       │       ├── Resources.th-TH.resx
│   │   │       │       ├── Resources.tr-TR.resx
│   │   │       │       ├── Resources.uk-UA.resx
│   │   │       │       ├── Resources.uz-Latn-UZ.resx
│   │   │       │       ├── Resources.vi-VN.resx
│   │   │       │       ├── Resources.zh-CN.resx
│   │   │       │       └── Resources.zh-TW.resx
│   │   │       ├── RelativePanel/
│   │   │       │   ├── RelativePanel.AttachedProperties.cs
│   │   │       │   └── RelativePanel.cs
│   │   │       ├── Repeater/
│   │   │       │   ├── Automation/
│   │   │       │   │   └── RepeaterAutomationPeer.cs
│   │   │       │   ├── Common/
│   │   │       │   │   ├── IndexPath.cs
│   │   │       │   │   ├── IndexRange.cs
│   │   │       │   │   ├── RepeaterTestHooks.cs
│   │   │       │   │   └── RepeaterTestHooksFactory.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── GlobalSuppressions.cs
│   │   │       │   ├── IElementFactory.cs
│   │   │       │   ├── IElementFactoryShim.cs
│   │   │       │   ├── IKeyIndexMapping.cs
│   │   │       │   ├── IScrollAnchorProvider.cs
│   │   │       │   ├── ItemsRepeater/
│   │   │       │   │   ├── Animations/
│   │   │       │   │   │   ├── AnimationManager.cs
│   │   │       │   │   │   └── ElementAnimator.cs
│   │   │       │   │   ├── EventRevokers.cs
│   │   │       │   │   ├── ItemTemplate/
│   │   │       │   │   │   ├── ElementFactory.cs
│   │   │       │   │   │   ├── ElementFactoryGetArgs.cs
│   │   │       │   │   │   ├── ElementFactoryRecycleArgs.cs
│   │   │       │   │   │   ├── ItemTemplateWrapper.cs
│   │   │       │   │   │   ├── RecyclePool.cs
│   │   │       │   │   │   ├── RecyclingElementFactory.cs
│   │   │       │   │   │   └── SelectTemplateEventArgs.cs
│   │   │       │   │   ├── ItemsRepeater.common.cs
│   │   │       │   │   ├── ItemsRepeater.cs
│   │   │       │   │   ├── ItemsRepeater.wpf.cs
│   │   │       │   │   ├── ItemsRepeaterElementClearingEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterElementIndexChangedEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterElementPreparedEventArgs.cs
│   │   │       │   │   ├── ItemsRepeaterScrollHost.cs
│   │   │       │   │   ├── ItemsSource/
│   │   │       │   │   │   ├── InspectingDataSource.cs
│   │   │       │   │   │   └── ItemsSourceView.cs
│   │   │       │   │   ├── RepeaterLayoutContext.cs
│   │   │       │   │   ├── RepeaterPrivate.cs
│   │   │       │   │   ├── UniqueIdElementPool.cs
│   │   │       │   │   ├── ViewManager.cs
│   │   │       │   │   ├── ViewportManager.cs
│   │   │       │   │   └── ViewportManagerDownLevel.cs
│   │   │       │   ├── Layouts/
│   │   │       │   │   ├── FlowLayout/
│   │   │       │   │   │   ├── ElementManager.cs
│   │   │       │   │   │   ├── FlowLayout.cs
│   │   │       │   │   │   ├── FlowLayoutAlgorithm.cs
│   │   │       │   │   │   ├── FlowLayoutState.cs
│   │   │       │   │   │   ├── IFlowLayoutAlgorithmDelegates.cs
│   │   │       │   │   │   └── OrientationBasedMeasures.cs
│   │   │       │   │   ├── Layout.cs
│   │   │       │   │   ├── LayoutContext.cs
│   │   │       │   │   ├── LayoutContextAdapter.cs
│   │   │       │   │   ├── NonVirtualizingLayout.cs
│   │   │       │   │   ├── NonVirtualizingLayoutContext.cs
│   │   │       │   │   ├── StackLayout/
│   │   │       │   │   │   ├── StackLayout.cs
│   │   │       │   │   │   └── StackLayoutState.cs
│   │   │       │   │   ├── UniformGridLayout/
│   │   │       │   │   │   ├── UniformGridLayout.cs
│   │   │       │   │   │   └── UniformGridLayoutState.cs
│   │   │       │   │   ├── VirtualLayoutContextAdapter.cs
│   │   │       │   │   ├── VirtualizationInfo.cs
│   │   │       │   │   ├── VirtualizingLayout.cs
│   │   │       │   │   └── VirtualizingLayoutContext.cs
│   │   │       │   ├── RepeaterUIElementCollection.cs
│   │   │       │   ├── ScrollViewerExtensions.cs
│   │   │       │   └── SelectionModel/
│   │   │       │       ├── SelectedItems.cs
│   │   │       │       ├── SelectionModel.cs
│   │   │       │       ├── SelectionModelChildrenRequestedEventArgs.cs
│   │   │       │       ├── SelectionModelSelectionChangedEventArgs.cs
│   │   │       │       ├── SelectionNode.cs
│   │   │       │       └── SelectionTreeHelper.cs
│   │   │       ├── SplitButton/
│   │   │       │   ├── SplitButton.cs
│   │   │       │   ├── SplitButton.xaml
│   │   │       │   ├── SplitButtonAutomationPeer.cs
│   │   │       │   ├── SplitButtonClickEventArgs.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.be-BY.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-BD.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.ha-Latn-NG.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.sw-KE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   ├── ToggleSplitButton.cs
│   │   │       │   └── ToggleSplitButtonAutomationPeer.cs
│   │   │       ├── SplitView/
│   │   │       │   ├── EventRevokers.cs
│   │   │       │   ├── SplitView.cs
│   │   │       │   ├── SplitView.properties.cs
│   │   │       │   ├── SplitView.xaml
│   │   │       │   ├── SplitViewDisplayMode.cs
│   │   │       │   ├── SplitViewPaneClosingEventArgs.cs
│   │   │       │   ├── SplitViewPanePlacement.cs
│   │   │       │   └── SplitViewTemplateSettings.cs
│   │   │       ├── TeachingTip/
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.af-ZA.resx
│   │   │       │   │   ├── Resources.am-ET.resx
│   │   │       │   │   ├── Resources.ar-SA.resx
│   │   │       │   │   ├── Resources.as-IN.resx
│   │   │       │   │   ├── Resources.az-Latn-AZ.resx
│   │   │       │   │   ├── Resources.bg-BG.resx
│   │   │       │   │   ├── Resources.bn-IN.resx
│   │   │       │   │   ├── Resources.bs-Latn-BA.resx
│   │   │       │   │   ├── Resources.ca-ES.resx
│   │   │       │   │   ├── Resources.ca-Es-VALENCIA.resx
│   │   │       │   │   ├── Resources.cs-CZ.resx
│   │   │       │   │   ├── Resources.cy-GB.resx
│   │   │       │   │   ├── Resources.da-DK.resx
│   │   │       │   │   ├── Resources.de-DE.resx
│   │   │       │   │   ├── Resources.el-GR.resx
│   │   │       │   │   ├── Resources.en-GB.resx
│   │   │       │   │   ├── Resources.es-ES.resx
│   │   │       │   │   ├── Resources.es-MX.resx
│   │   │       │   │   ├── Resources.et-EE.resx
│   │   │       │   │   ├── Resources.eu-ES.resx
│   │   │       │   │   ├── Resources.fa-IR.resx
│   │   │       │   │   ├── Resources.fi-FI.resx
│   │   │       │   │   ├── Resources.fil-PH.resx
│   │   │       │   │   ├── Resources.fr-CA.resx
│   │   │       │   │   ├── Resources.fr-FR.resx
│   │   │       │   │   ├── Resources.ga-IE.resx
│   │   │       │   │   ├── Resources.gd-gb.resx
│   │   │       │   │   ├── Resources.gl-ES.resx
│   │   │       │   │   ├── Resources.gu-IN.resx
│   │   │       │   │   ├── Resources.he-IL.resx
│   │   │       │   │   ├── Resources.hi-IN.resx
│   │   │       │   │   ├── Resources.hr-HR.resx
│   │   │       │   │   ├── Resources.hu-HU.resx
│   │   │       │   │   ├── Resources.hy-AM.resx
│   │   │       │   │   ├── Resources.id-ID.resx
│   │   │       │   │   ├── Resources.is-IS.resx
│   │   │       │   │   ├── Resources.it-IT.resx
│   │   │       │   │   ├── Resources.ja-JP.resx
│   │   │       │   │   ├── Resources.ka-GE.resx
│   │   │       │   │   ├── Resources.kk-KZ.resx
│   │   │       │   │   ├── Resources.km-KH.resx
│   │   │       │   │   ├── Resources.kn-IN.resx
│   │   │       │   │   ├── Resources.ko-KR.resx
│   │   │       │   │   ├── Resources.kok-IN.resx
│   │   │       │   │   ├── Resources.lb-LU.resx
│   │   │       │   │   ├── Resources.lo-LA.resx
│   │   │       │   │   ├── Resources.lt-LT.resx
│   │   │       │   │   ├── Resources.lv-LV.resx
│   │   │       │   │   ├── Resources.mi-NZ.resx
│   │   │       │   │   ├── Resources.mk-MK.resx
│   │   │       │   │   ├── Resources.ml-IN.resx
│   │   │       │   │   ├── Resources.mr-IN.resx
│   │   │       │   │   ├── Resources.ms-MY.resx
│   │   │       │   │   ├── Resources.mt-MT.resx
│   │   │       │   │   ├── Resources.nb-NO.resx
│   │   │       │   │   ├── Resources.ne-NP.resx
│   │   │       │   │   ├── Resources.nl-NL.resx
│   │   │       │   │   ├── Resources.nn-NO.resx
│   │   │       │   │   ├── Resources.or-IN.resx
│   │   │       │   │   ├── Resources.pa-IN.resx
│   │   │       │   │   ├── Resources.pl-PL.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.pt-PT.resx
│   │   │       │   │   ├── Resources.quz-PE.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ro-RO.resx
│   │   │       │   │   ├── Resources.ru-RU.resx
│   │   │       │   │   ├── Resources.sk-SK.resx
│   │   │       │   │   ├── Resources.sl-SI.resx
│   │   │       │   │   ├── Resources.sq-AL.resx
│   │   │       │   │   ├── Resources.sr-Cyrl-BA.resx
│   │   │       │   │   ├── Resources.sr-Cyrl-RS.resx
│   │   │       │   │   ├── Resources.sr-Latn-RS.resx
│   │   │       │   │   ├── Resources.sv-SE.resx
│   │   │       │   │   ├── Resources.ta-IN.resx
│   │   │       │   │   ├── Resources.te-IN.resx
│   │   │       │   │   ├── Resources.th-TH.resx
│   │   │       │   │   ├── Resources.tr-TR.resx
│   │   │       │   │   ├── Resources.tt-RU.resx
│   │   │       │   │   ├── Resources.ug-CN.resx
│   │   │       │   │   ├── Resources.uk-UA.resx
│   │   │       │   │   ├── Resources.ur-PK.resx
│   │   │       │   │   ├── Resources.uz-Latn-UZ.resx
│   │   │       │   │   ├── Resources.vi-VN.resx
│   │   │       │   │   ├── Resources.zh-CN.resx
│   │   │       │   │   └── Resources.zh-TW.resx
│   │   │       │   ├── TeachingTip.cs
│   │   │       │   ├── TeachingTip.properties.cs
│   │   │       │   ├── TeachingTip.xaml
│   │   │       │   ├── TeachingTipAutomationPeer.cs
│   │   │       │   ├── TeachingTipClosedEventArgs.cs
│   │   │       │   ├── TeachingTipClosingEventArgs.cs
│   │   │       │   ├── TeachingTipTemplateSettings.cs
│   │   │       │   └── TeachingTipTestHooks.cs
│   │   │       ├── TimePicker/
│   │   │       │   ├── AmPmComparer.cs
│   │   │       │   ├── DateTimeComponentSelector.cs
│   │   │       │   ├── DateTimeComponentSelectorItem.cs
│   │   │       │   ├── DateTimeComponentSelectorItemsConverter.cs
│   │   │       │   ├── DateTimeComponentSelectorPanel.cs
│   │   │       │   ├── Enums.cs
│   │   │       │   ├── LoopingSelectorDataSource.cs
│   │   │       │   ├── Strings/
│   │   │       │   │   ├── Resources.cs.resx
│   │   │       │   │   ├── Resources.de.resx
│   │   │       │   │   ├── Resources.es.resx
│   │   │       │   │   ├── Resources.fa.resx
│   │   │       │   │   ├── Resources.fr.resx
│   │   │       │   │   ├── Resources.it.resx
│   │   │       │   │   ├── Resources.ja.resx
│   │   │       │   │   ├── Resources.ko.resx
│   │   │       │   │   ├── Resources.pl.resx
│   │   │       │   │   ├── Resources.pt-BR.resx
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Resources.ru.resx
│   │   │       │   │   ├── Resources.tr.resx
│   │   │       │   │   ├── Resources.zh-Hans.resx
│   │   │       │   │   └── Resources.zh-Hant.resx
│   │   │       │   ├── TimePicker.cs
│   │   │       │   ├── TimePicker.xaml
│   │   │       │   └── TimePickerBase.cs
│   │   │       ├── ToggleSwitch/
│   │   │       │   ├── ToggleSwitch.cs
│   │   │       │   ├── ToggleSwitch.xaml
│   │   │       │   └── ToggleSwitchAutomationPeer.cs
│   │   │       ├── TransitioningContentControl/
│   │   │       │   ├── TransitioningContentControl.cs
│   │   │       │   └── TransitioningContentControl.xaml
│   │   │       └── TwoPaneView/
│   │   │           ├── DisplayRegionHelper.cs
│   │   │           ├── DisplayRegionHelperInfo.cs
│   │   │           ├── Enums.cs
│   │   │           ├── TwoPaneView.cs
│   │   │           └── TwoPaneView.xaml
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   └── DesignTimeResources.xaml
│   │   ├── Themes/
│   │   │   └── Generic.xaml
│   │   └── iNKORE.UI.WPF.Modern.Controls.csproj
│   ├── iNKORE.UI.WPF.Modern.Gallery/
│   │   ├── App.config
│   │   ├── App.xaml
│   │   ├── App.xaml.cs
│   │   ├── Assets/
│   │   │   ├── Contacts.txt
│   │   │   ├── SampleMedia/
│   │   │   │   ├── fishes.wmv
│   │   │   │   └── ladybug.wmv
│   │   │   └── mtns.csv
│   │   ├── Common/
│   │   │   ├── ActivityFeedLayout.cs
│   │   │   ├── BoolNegationConverter.cs
│   │   │   ├── BooleanToValueConverter.cs
│   │   │   ├── BrushToColorConverter.cs
│   │   │   ├── Category.cs
│   │   │   ├── CornerRadiusToDoubleConverter.cs
│   │   │   ├── DynamicResourceHelper.cs
│   │   │   ├── EqualsConverter.cs
│   │   │   ├── Extensions.cs
│   │   │   ├── FontIconExtension.cs
│   │   │   ├── ImageLoader.cs
│   │   │   ├── InverseAppThemeConverter.cs
│   │   │   ├── InvertThemeConverter.cs
│   │   │   ├── ItemCountConverter.cs
│   │   │   ├── LanguageList.cs
│   │   │   ├── MenuItemTemplateSelector.cs
│   │   │   ├── NullToVisibilityConverter.cs
│   │   │   ├── NullableBooleanToBooleanConverter.cs
│   │   │   ├── RelativeToAbsoluteConverter.cs
│   │   │   ├── SolidColorBrushToColorStringConverter.cs
│   │   │   ├── StaticResourceHelper.cs
│   │   │   ├── WindowExtensions.cs
│   │   │   ├── WindowHelper.cs
│   │   │   └── WindowPlacement.cs
│   │   ├── Controls/
│   │   │   ├── ControlExample.cs
│   │   │   ├── ControlExample.xaml
│   │   │   ├── HeaderTile.xaml
│   │   │   ├── HeaderTile.xaml.cs
│   │   │   ├── HomePageHeaderImage.xaml
│   │   │   ├── HomePageHeaderImage.xaml.cs
│   │   │   ├── PageHeader.xaml
│   │   │   ├── PageHeader.xaml.cs
│   │   │   ├── SampleCodePresenter.xaml
│   │   │   ├── SampleCodePresenter.xaml.cs
│   │   │   ├── TileGallery.xaml
│   │   │   ├── TileGallery.xaml.cs
│   │   │   └── UserControls/
│   │   │       ├── DocumentationPromotion.xaml
│   │   │       ├── DocumentationPromotion.xaml.cs
│   │   │       ├── TypographyControl.xaml
│   │   │       └── TypographyControl.xaml.cs
│   │   ├── Data/
│   │   │   ├── DataGridDataItem.cs
│   │   │   ├── DataGridDataSource.cs
│   │   │   └── IconsDataSource.cs
│   │   ├── DataModel/
│   │   │   ├── ControlInfoData.schema.json
│   │   │   ├── ControlInfoDataItem.cs
│   │   │   ├── Data/
│   │   │   │   ├── Controls.Community.json
│   │   │   │   ├── Controls.Extended.json
│   │   │   │   ├── Controls.Foundation.json
│   │   │   │   └── Controls.Windows.json
│   │   │   └── IconData.cs
│   │   ├── Helpers/
│   │   │   ├── NavigationHelper.cs
│   │   │   ├── StringHelper.cs
│   │   │   └── ThemeHelper.cs
│   │   ├── MainWindow.xaml
│   │   ├── MainWindow.xaml.cs
│   │   ├── Navigation/
│   │   │   ├── NavigationRootPage.xaml
│   │   │   └── NavigationRootPage.xaml.cs
│   │   ├── PRIVACY.md
│   │   ├── Pages/
│   │   │   ├── AllControlsPage.xaml
│   │   │   ├── AllControlsPage.xaml.cs
│   │   │   ├── Controls/
│   │   │   │   ├── Community/
│   │   │   │   │   ├── SettingsCardPage.xaml
│   │   │   │   │   ├── SettingsCardPage.xaml.cs
│   │   │   │   │   ├── SettingsExpanderPage.xaml
│   │   │   │   │   └── SettingsExpanderPage.xaml.cs
│   │   │   │   ├── Extended/
│   │   │   │   │   ├── MessageBoxPage.xaml
│   │   │   │   │   └── MessageBoxPage.xaml.cs
│   │   │   │   ├── Foundation/
│   │   │   │   │   ├── Accessbility/
│   │   │   │   │   │   └── .gitkeep
│   │   │   │   │   ├── Design/
│   │   │   │   │   │   ├── IconographyPage.xaml
│   │   │   │   │   │   ├── IconographyPage.xaml.cs
│   │   │   │   │   │   ├── TypographyPage.xaml
│   │   │   │   │   │   └── TypographyPage.xaml.cs
│   │   │   │   │   └── Fundamentals/
│   │   │   │   │       └── .gitkeep
│   │   │   │   └── Windows/
│   │   │   │       ├── AcrylicPage.xaml
│   │   │   │       ├── AcrylicPage.xaml.cs
│   │   │   │       ├── AppBarButtonPage.xaml
│   │   │   │       ├── AppBarButtonPage.xaml.cs
│   │   │   │       ├── AppBarSeparatorPage.xaml
│   │   │   │       ├── AppBarSeparatorPage.xaml.cs
│   │   │   │       ├── AppBarToggleButtonPage.xaml
│   │   │   │       ├── AppBarToggleButtonPage.xaml.cs
│   │   │   │       ├── AutoSuggestBoxPage.xaml
│   │   │   │       ├── AutoSuggestBoxPage.xaml.cs
│   │   │   │       ├── AutomationPropertiesPage.xaml
│   │   │   │       ├── AutomationPropertiesPage.xaml.cs
│   │   │   │       ├── BorderPage.xaml
│   │   │   │       ├── BorderPage.xaml.cs
│   │   │   │       ├── ButtonPage.xaml
│   │   │   │       ├── ButtonPage.xaml.cs
│   │   │   │       ├── CalendarDatePickerPage.xaml
│   │   │   │       ├── CalendarDatePickerPage.xaml.cs
│   │   │   │       ├── CalendarViewPage.xaml
│   │   │   │       ├── CalendarViewPage.xaml.cs
│   │   │   │       ├── CanvasPage.xaml
│   │   │   │       ├── CanvasPage.xaml.cs
│   │   │   │       ├── CheckBoxPage.xaml
│   │   │   │       ├── CheckBoxPage.xaml.cs
│   │   │   │       ├── ColorPaletteResourcesPage.xaml
│   │   │   │       ├── ColorPaletteResourcesPage.xaml.cs
│   │   │   │       ├── ComboBoxPage.xaml
│   │   │   │       ├── ComboBoxPage.xaml.cs
│   │   │   │       ├── CommandBarFlyoutPage.xaml
│   │   │   │       ├── CommandBarFlyoutPage.xaml.cs
│   │   │   │       ├── CommandBarPage.xaml
│   │   │   │       ├── CommandBarPage.xaml.cs
│   │   │   │       ├── CompactSizingPage.xaml
│   │   │   │       ├── CompactSizingPage.xaml.cs
│   │   │   │       ├── ContentDialogContent.xaml
│   │   │   │       ├── ContentDialogContent.xaml.cs
│   │   │   │       ├── ContentDialogExample.xaml
│   │   │   │       ├── ContentDialogExample.xaml.cs
│   │   │   │       ├── ContentDialogPage.xaml
│   │   │   │       ├── ContentDialogPage.xaml.cs
│   │   │   │       ├── ContentDialogTestContent.xaml
│   │   │   │       ├── ContentDialogTestContent.xaml.cs
│   │   │   │       ├── ContextMenuPage.xaml
│   │   │   │       ├── ContextMenuPage.xaml.cs
│   │   │   │       ├── ControlPalettePage.xaml
│   │   │   │       ├── ControlPalettePage.xaml.cs
│   │   │   │       ├── ControlPaletteTestContent.xaml
│   │   │   │       ├── ControlPaletteTestContent.xaml.cs
│   │   │   │       ├── CustomDataObject.cs
│   │   │   │       ├── DataGridPage.xaml
│   │   │   │       ├── DataGridPage.xaml.cs
│   │   │   │       ├── DatePickerPage.xaml
│   │   │   │       ├── DatePickerPage.xaml.cs
│   │   │   │       ├── DropDownButtonPage.xaml
│   │   │   │       ├── DropDownButtonPage.xaml.cs
│   │   │   │       ├── ExpanderPage.xaml
│   │   │   │       ├── ExpanderPage.xaml.cs
│   │   │   │       ├── FlipViewPage.xaml
│   │   │   │       ├── FlipViewPage.xaml.cs
│   │   │   │       ├── FlyoutPage.xaml
│   │   │   │       ├── FlyoutPage.xaml.cs
│   │   │   │       ├── GridPage.xaml
│   │   │   │       ├── GridPage.xaml.cs
│   │   │   │       ├── GridSplitterPage.xaml
│   │   │   │       ├── GridSplitterPage.xaml.cs
│   │   │   │       ├── GridViewPage.xaml
│   │   │   │       ├── GridViewPage.xaml.cs
│   │   │   │       ├── GroupBoxPage.xaml
│   │   │   │       ├── GroupBoxPage.xaml.cs
│   │   │   │       ├── HyperlinkButtonPage.xaml
│   │   │   │       ├── HyperlinkButtonPage.xaml.cs
│   │   │   │       ├── IconElementPage.xaml
│   │   │   │       ├── IconElementPage.xaml.cs
│   │   │   │       ├── ImagePage.xaml
│   │   │   │       ├── ImagePage.xaml.cs
│   │   │   │       ├── InfoBadgePage.xaml
│   │   │   │       ├── InfoBadgePage.xaml.cs
│   │   │   │       ├── InfoBarPage.xaml
│   │   │   │       ├── InfoBarPage.xaml.cs
│   │   │   │       ├── ItemsRepeaterPage.xaml
│   │   │   │       ├── ItemsRepeaterPage.xaml.cs
│   │   │   │       ├── ListBoxPage.xaml
│   │   │   │       ├── ListBoxPage.xaml.cs
│   │   │   │       ├── ListViewPage.xaml
│   │   │   │       ├── ListViewPage.xaml.cs
│   │   │   │       ├── MediaPlayerElementPage.xaml
│   │   │   │       ├── MediaPlayerElementPage.xaml.cs
│   │   │   │       ├── MenuBarPage.xaml
│   │   │   │       ├── MenuBarPage.xaml.cs
│   │   │   │       ├── MenuFlyoutPage.xaml
│   │   │   │       ├── MenuFlyoutPage.xaml.cs
│   │   │   │       ├── MenuPage.xaml
│   │   │   │       ├── MenuPage.xaml.cs
│   │   │   │       ├── NavigationViewPage.xaml
│   │   │   │       ├── NavigationViewPage.xaml.cs
│   │   │   │       ├── NumberBoxPage.xaml
│   │   │   │       ├── NumberBoxPage.xaml.cs
│   │   │   │       ├── PageTransitionPage.xaml
│   │   │   │       ├── PageTransitionPage.xaml.cs
│   │   │   │       ├── ParallaxViewPage.xaml
│   │   │   │       ├── ParallaxViewPage.xaml.cs
│   │   │   │       ├── PasswordBoxPage.xaml
│   │   │   │       ├── PasswordBoxPage.xaml.cs
│   │   │   │       ├── PersonPicturePage.xaml
│   │   │   │       ├── PersonPicturePage.xaml.cs
│   │   │   │       ├── PipsPagerPage.xaml
│   │   │   │       ├── PipsPagerPage.xaml.cs
│   │   │   │       ├── PivotPage.xaml
│   │   │   │       ├── PivotPage.xaml.cs
│   │   │   │       ├── PopupPlacementPage.xaml
│   │   │   │       ├── PopupPlacementPage.xaml.cs
│   │   │   │       ├── ProgressBarPage.xaml
│   │   │   │       ├── ProgressBarPage.xaml.cs
│   │   │   │       ├── ProgressRingPage.xaml
│   │   │   │       ├── ProgressRingPage.xaml.cs
│   │   │   │       ├── RadialGradientBrushPage.xaml
│   │   │   │       ├── RadialGradientBrushPage.xaml.cs
│   │   │   │       ├── RadioButtonPage.xaml
│   │   │   │       ├── RadioButtonPage.xaml.cs
│   │   │   │       ├── RadioButtonsPage.xaml
│   │   │   │       ├── RadioButtonsPage.xaml.cs
│   │   │   │       ├── RatingControlPage.xaml
│   │   │   │       ├── RatingControlPage.xaml.cs
│   │   │   │       ├── RelativePanelPage.xaml
│   │   │   │       ├── RelativePanelPage.xaml.cs
│   │   │   │       ├── RepeatButtonPage.xaml
│   │   │   │       ├── RepeatButtonPage.xaml.cs
│   │   │   │       ├── RichEditBoxPage.xaml
│   │   │   │       ├── RichEditBoxPage.xaml.cs
│   │   │   │       ├── ScrollViewerPage.xaml
│   │   │   │       ├── ScrollViewerPage.xaml.cs
│   │   │   │       ├── ShadowPage.xaml
│   │   │   │       ├── ShadowPage.xaml.cs
│   │   │   │       ├── SliderPage.xaml
│   │   │   │       ├── SliderPage.xaml.cs
│   │   │   │       ├── SplitButtonPage.xaml
│   │   │   │       ├── SplitButtonPage.xaml.cs
│   │   │   │       ├── SplitViewPage.xaml
│   │   │   │       ├── SplitViewPage.xaml.cs
│   │   │   │       ├── StackPanelPage.xaml
│   │   │   │       ├── StackPanelPage.xaml.cs
│   │   │   │       ├── StatusBarPage.xaml
│   │   │   │       ├── StatusBarPage.xaml.cs
│   │   │   │       ├── SystemBackdropsPage.xaml
│   │   │   │       ├── SystemBackdropsPage.xaml.cs
│   │   │   │       ├── TabViewPage.xaml
│   │   │   │       ├── TabViewPage.xaml.cs
│   │   │   │       ├── TeachingTipPage.xaml
│   │   │   │       ├── TeachingTipPage.xaml.cs
│   │   │   │       ├── TestContentDialog.xaml
│   │   │   │       ├── TestContentDialog.xaml.cs
│   │   │   │       ├── TextBlockPage.xaml
│   │   │   │       ├── TextBlockPage.xaml.cs
│   │   │   │       ├── TextBoxPage.xaml
│   │   │   │       ├── TextBoxPage.xaml.cs
│   │   │   │       ├── ThemeResourcesPage.xaml
│   │   │   │       ├── ThemeResourcesPage.xaml.cs
│   │   │   │       ├── ThemesPage.xaml
│   │   │   │       ├── ThemesPage.xaml.cs
│   │   │   │       ├── ThreadedUIPage.xaml
│   │   │   │       ├── ThreadedUIPage.xaml.cs
│   │   │   │       ├── TimePickerPage.xaml
│   │   │   │       ├── TimePickerPage.xaml.cs
│   │   │   │       ├── ToggleButtonPage.xaml
│   │   │   │       ├── ToggleButtonPage.xaml.cs
│   │   │   │       ├── ToggleSplitButtonPage.xaml
│   │   │   │       ├── ToggleSplitButtonPage.xaml.cs
│   │   │   │       ├── ToggleSwitchPage.xaml
│   │   │   │       ├── ToggleSwitchPage.xaml.cs
│   │   │   │       ├── ToolBarPage.xaml
│   │   │   │       ├── ToolBarPage.xaml.cs
│   │   │   │       ├── ToolTipPage.xaml
│   │   │   │       ├── ToolTipPage.xaml.cs
│   │   │   │       ├── TreeViewPage.xaml
│   │   │   │       ├── TreeViewPage.xaml.cs
│   │   │   │       ├── ViewBoxPage.xaml
│   │   │   │       ├── ViewBoxPage.xaml.cs
│   │   │   │       ├── WindowPage.xaml
│   │   │   │       └── WindowPage.xaml.cs
│   │   │   ├── ItemPage.xaml
│   │   │   ├── ItemPage.xaml.cs
│   │   │   ├── ItemsPageBase.cs
│   │   │   ├── NewControlsPage.xaml
│   │   │   ├── NewControlsPage.xaml.cs
│   │   │   ├── SearchResultsPage.xaml
│   │   │   ├── SearchResultsPage.xaml.cs
│   │   │   ├── SectionPage.xaml
│   │   │   ├── SectionPage.xaml.cs
│   │   │   ├── SettingsPage.xaml
│   │   │   └── SettingsPage.xaml.cs
│   │   ├── Presets/
│   │   │   ├── ColorPresetResources.cs
│   │   │   ├── Default/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Forest/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Lavender/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── Nighttime/
│   │   │   │   ├── Dark.xaml
│   │   │   │   └── Light.xaml
│   │   │   ├── PreFluent.xaml
│   │   │   ├── PresetManager.cs
│   │   │   └── ShapePresetResources.cs
│   │   ├── Properties/
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── DesignTimeResources.xaml
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Samples/
│   │   │   ├── SampleCompactSizingPage.xaml
│   │   │   ├── SampleCompactSizingPage.xaml.cs
│   │   │   ├── SampleContentDialogWindow.xaml
│   │   │   ├── SampleContentDialogWindow.xaml.cs
│   │   │   ├── SampleStandardSizingPage.xaml
│   │   │   ├── SampleStandardSizingPage.xaml.cs
│   │   │   ├── SampleSystemBackdropsWindow.xaml
│   │   │   └── SampleSystemBackdropsWindow.xaml.cs
│   │   ├── Themes/
│   │   │   ├── Generic.xaml
│   │   │   ├── HighContrast.xaml
│   │   │   ├── ItemTemplates.xaml
│   │   │   └── ItemTemplates.xaml.cs
│   │   ├── ThreadedUI/
│   │   │   ├── ThreadedProgressBar.xaml
│   │   │   ├── ThreadedProgressBar.xaml.cs
│   │   │   ├── ThreadedProgressRing.xaml
│   │   │   ├── ThreadedProgressRing.xaml.cs
│   │   │   ├── ThreadedVisualHost.cs
│   │   │   ├── ThreadedVisualHostBase.cs
│   │   │   └── VisualTargetPresentationSource.cs
│   │   ├── WindowWithCustomTitleBar.xaml
│   │   ├── WindowWithCustomTitleBar.xaml.cs
│   │   ├── app.manifest
│   │   └── iNKORE.UI.WPF.Modern.Gallery.csproj
│   ├── samples/
│   │   └── SamplesCommon/
│   │       ├── AccentColorPicker.xaml
│   │       ├── AccentColorPicker.xaml.cs
│   │       ├── AppTheme.cs
│   │       ├── AssemblyInfo.cs
│   │       ├── AutoPanningMode.cs
│   │       ├── BindableBase.cs
│   │       ├── CommonCommands.cs
│   │       ├── ControlExample.cs
│   │       ├── Converters/
│   │       │   ├── ColorToBrushConverter.cs
│   │       │   ├── EnumValuesConverter.cs
│   │       │   ├── InverseAppThemeConverter.cs
│   │       │   └── PixelsToGridLengthConverter.cs
│   │       ├── CrossFadeContentControl.cs
│   │       ├── DispatcherHelper.cs
│   │       ├── DynamicResourceHelper.cs
│   │       ├── Extensions.cs
│   │       ├── FontOverrides.cs
│   │       ├── LayoutDensitySelector.xaml
│   │       ├── LayoutDensitySelector.xaml.cs
│   │       ├── NonClippingStackPanel.cs
│   │       ├── Properties/
│   │       │   └── DesignTimeResources.xaml
│   │       ├── SampleFrame.cs
│   │       ├── SamplePages/
│   │       │   ├── SampleCompactSizingPage.xaml
│   │       │   ├── SampleCompactSizingPage.xaml.cs
│   │       │   ├── SamplePage1.xaml
│   │       │   ├── SamplePage1.xaml.cs
│   │       │   ├── SamplePage2.xaml
│   │       │   ├── SamplePage2.xaml.cs
│   │       │   ├── SamplePage3.xaml
│   │       │   ├── SamplePage3.xaml.cs
│   │       │   ├── SamplePage4.xaml
│   │       │   ├── SamplePage4.xaml.cs
│   │       │   ├── SamplePage5.xaml
│   │       │   ├── SamplePage5.xaml.cs
│   │       │   ├── SamplePage6.xaml
│   │       │   ├── SamplePage6.xaml.cs
│   │       │   ├── SamplePage7.xaml
│   │       │   ├── SamplePage7.xaml.cs
│   │       │   ├── SampleSettingsPage.xaml
│   │       │   ├── SampleSettingsPage.xaml.cs
│   │       │   ├── SampleStandardSizingPage.xaml
│   │       │   └── SampleStandardSizingPage.xaml.cs
│   │       ├── SamplesCommon - Backup (1).csproj
│   │       ├── SamplesCommon - Backup.csproj
│   │       ├── SamplesCommon.csproj
│   │       ├── ThemeManagerProxy.cs
│   │       └── Themes/
│   │           └── Generic.xaml
│   └── tools/
│       └── WinUIResourcesConverter/
│           ├── App.xaml
│           ├── App.xaml.cs
│           ├── MainWindow.xaml
│           ├── MainWindow.xaml.cs
│           ├── Properties/
│           │   ├── AssemblyInfo.cs
│           │   └── DesignTimeResources.xaml
│           ├── RESXConverter.cs
│           ├── ResourcesFile.cs
│           ├── WinUIResourcesConverter - Backup.csproj
│           ├── WinUIResourcesConverter.csproj
│           └── app.manifest
└── tools/
    └── IconKeyFileMaker/
        ├── App.xaml
        ├── App.xaml.cs
        ├── AssemblyInfo.cs
        ├── IconKeyFileMaker.csproj
        ├── MainWindow.xaml
        └── MainWindow.xaml.cs
Download .txt
Showing preview only (663K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (6191 symbols across 682 files)

FILE: samples/Acrylic10Example/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/Acrylic10Example/MainWindow.xaml.cs
  class MainWindow (line 21) | public partial class MainWindow : Window
    method MainWindow (line 23) | public MainWindow()
    method Window_Loaded (line 28) | private void Window_Loaded(object sender, RoutedEventArgs e)

FILE: samples/ButtonsOnTitlebar/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/ButtonsOnTitlebar/MainWindow.xaml.cs
  class MainWindow (line 17) | public partial class MainWindow : Window
    method MainWindow (line 19) | public MainWindow()

FILE: samples/ExamplePhotoTaker/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/ExamplePhotoTaker/MainWindow.xaml.cs
  class MainWindow (line 22) | public partial class MainWindow : Window
    method MainWindow (line 24) | public MainWindow()
    method Button_Click (line 29) | private void Button_Click(object sender, RoutedEventArgs e)
    method Button_SaveScreenshot_Click (line 41) | private void Button_SaveScreenshot_Click(object sender, RoutedEventArg...
  class VacationSpots (line 67) | class VacationSpots : ObservableCollection<string>
    method VacationSpots (line 69) | public VacationSpots()

FILE: samples/FlyoutExample/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/FlyoutExample/MainWindow.xaml.cs
  class MainWindow (line 17) | public partial class MainWindow : Window
    method MainWindow (line 19) | public MainWindow()
    method Button_ShowFlyout_Click (line 24) | private void Button_ShowFlyout_Click(object sender, RoutedEventArgs e)
    method DropDownButton_3_Click (line 29) | private void DropDownButton_3_Click(object sender, RoutedEventArgs e)

FILE: samples/NavigationViewExample/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/NavigationViewExample/MainWindow.xaml.cs
  class MainWindow (line 19) | public partial class MainWindow : Window
    method MainWindow (line 21) | public MainWindow()
    method NavigationView_SelectionChanged (line 30) | private void NavigationView_SelectionChanged(NavigationView sender, Na...
    method Window_Loaded (line 55) | private void Window_Loaded(object sender, RoutedEventArgs e)

FILE: samples/NavigationViewExample/Pages/AppsPage.xaml.cs
  class AppsPage (line 22) | public partial class AppsPage : Page
    method AppsPage (line 24) | public AppsPage()

FILE: samples/NavigationViewExample/Pages/GamesPage.xaml.cs
  class GamesPage (line 23) | public partial class GamesPage : Page
    method GamesPage (line 25) | public GamesPage()

FILE: samples/NavigationViewExample/Pages/HomePage.xaml.cs
  class HomePage (line 22) | public partial class HomePage : Page
    method HomePage (line 24) | public HomePage()

FILE: samples/NoAppXamlTest/MainWindow.xaml.cs
  class MainWindow (line 21) | public partial class MainWindow : Window
    method MainWindow (line 23) | public MainWindow()

FILE: samples/NoAppXamlTest/Program.cs
  class Program (line 9) | public static class Program
    method Main (line 11) | [STAThread]

FILE: samples/SettingsNavigationTest/App.xaml.cs
  class App (line 15) | public partial class App : Application
  class VisualTreeExtensions (line 18) | internal static class VisualTreeExtensions
    method TryFindParent (line 20) | public static T TryFindParent<T>(this DependencyObject child) where T ...

FILE: samples/SettingsNavigationTest/AppearancePage.xaml.cs
  class AppearancePage (line 8) | public partial class AppearancePage
    method AppearancePage (line 10) | public AppearancePage()
    method BackToMain (line 15) | private void BackToMain(object sender, System.Windows.RoutedEventArgs e)

FILE: samples/SettingsNavigationTest/MainPage.xaml.cs
  class MainPage (line 8) | public partial class MainPage
    method MainPage (line 10) | public MainPage()
    method ToAppearancePage (line 15) | private void ToAppearancePage(object sender, System.Windows.RoutedEven...

FILE: samples/SettingsNavigationTest/MainWindow.xaml.cs
  class MainWindow (line 10) | public partial class MainWindow
    method MainWindow (line 14) | public MainWindow()

FILE: samples/SettingsNavigationTest/Properties/Resources.Designer.cs
  class Resources (line 22) | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resource...
    method Resources (line 32) | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Mic...

FILE: samples/SettingsNavigationTest/Properties/Settings.Designer.cs
  class Settings (line 15) | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]

FILE: samples/StarterKit/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/StarterKit/MainWindow.xaml.cs
  class MainWindow (line 17) | public partial class MainWindow : Window
    method MainWindow (line 19) | public MainWindow()

FILE: samples/TransparentNavigationViewExample/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/TransparentNavigationViewExample/MainWindow.xaml.cs
  class MainWindow (line 17) | public partial class MainWindow : Window
    method MainWindow (line 19) | public MainWindow()

FILE: samples/WindowExample/App.xaml.cs
  class App (line 10) | public partial class App : Application

FILE: samples/WindowExample/MainWindow.xaml.cs
  class MainWindow (line 21) | public partial class MainWindow : Window
    method MainWindow (line 23) | public MainWindow()
    method RadioButton_WindowStyle_Click (line 28) | private void RadioButton_WindowStyle_Click(object sender, RoutedEventA...
    method RadioButton_ResizeMode_Click (line 50) | private void RadioButton_ResizeMode_Click(object sender, RoutedEventAr...
    method CheckBox_UseModernWindowStyle_Click (line 65) | private void CheckBox_UseModernWindowStyle_Click(object sender, Routed...
    method RadioButton_SystemBackdropType_Click (line 70) | private void RadioButton_SystemBackdropType_Click(object sender, Route...
    method CheckBox_ApplyBackground_Click (line 87) | private void CheckBox_ApplyBackground_Click(object sender, RoutedEvent...
    method CheckBox_ApplyNoise_Click (line 92) | private void CheckBox_ApplyNoise_Click(object sender, RoutedEventArgs e)
    method TitleBarButtonAvailabilitySelector_Loaded (line 97) | private void TitleBarButtonAvailabilitySelector_Loaded(object sender, ...
    method TitleBarButtonAvailabilitySelector_SelectionChanged (line 113) | private void TitleBarButtonAvailabilitySelector_SelectionChanged(objec...
    method RadioButton_CornerStyle_Click (line 128) | private void RadioButton_CornerStyle_Click(object sender, RoutedEventA...

FILE: samples/WpfApp1/App.xaml.cs
  class App (line 14) | public partial class App : Application

FILE: samples/WpfApp1/MainWindow.xaml.cs
  class MainWindow (line 29) | public partial class MainWindow : Window
    method MainWindow (line 31) | public MainWindow()
    method ComboBox_Selected (line 37) | private void ComboBox_Selected(object sender, RoutedEventArgs e)
    method selec (line 42) | private void selec()
    method ComboBox_SelectionChanged (line 51) | private void ComboBox_SelectionChanged(object sender, SelectionChanged...
    method HyperlinkButton_Click (line 57) | private void HyperlinkButton_Click(object sender, RoutedEventArgs e)
    method AppBarButton_Click (line 71) | private void AppBarButton_Click(object sender, RoutedEventArgs e)
    method ToggleButton_Click (line 76) | private async void ToggleButton_Click(object sender, RoutedEventArgs e)
    method Button_MessageBox_Click (line 85) | private void Button_MessageBox_Click(object sender, RoutedEventArgs e)
    method Window_Loaded (line 119) | private void Window_Loaded(object sender, RoutedEventArgs e)
    method Button_ToggleTheme_Click (line 135) | private void Button_ToggleTheme_Click(object sender, RoutedEventArgs e)
    method SettingsCard_Click (line 147) | private void SettingsCard_Click(object sender, RoutedEventArgs e)
    method Button_Click (line 152) | private void Button_Click(object sender, RoutedEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/CollectionHelper.cs
  class CollectionHelper (line 8) | internal static class CollectionHelper
    method contains (line 10) | public static bool contains<T>(IList<T> c, T v)
    method unique_push_back (line 15) | public static void unique_push_back<T>(IList<T> c, T v)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/ControlStrings.cs
  class ControlStrings (line 11) | internal class ControlStrings : ResourceAccessor
    method ControlStrings (line 13) | public ControlStrings(Type controlType, ModernControlCategory category...
    method GetControlBaseName (line 19) | internal static string GetControlBaseName(Type controlType, ModernCont...
    method GetControlAssembly (line 29) | internal static Assembly GetControlAssembly(Type controlType)
  type ModernControlCategory (line 35) | internal enum ModernControlCategory

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/CppWinRTHelpers.cs
  class CppWinRTHelpers (line 8) | static class CppWinRTHelpers
    method GetTemplateChildT (line 10) | public static WinRTReturn GetTemplateChildT<WinRTReturn>(string childN...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/EmptyEnumerator.cs
  class EmptyEnumeratorA (line 17) | internal class EmptyEnumeratorA : IEnumerator
    method EmptyEnumeratorA (line 20) | private EmptyEnumeratorA()
    method Reset (line 42) | public void Reset() { }
    method MoveNext (line 48) | public bool MoveNext() { return false; }

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/EventRevokers.cs
  class FrameworkElementSizeChangedRevoker (line 6) | internal class FrameworkElementSizeChangedRevoker : EventRevoker<Framewo...
    method FrameworkElementSizeChangedRevoker (line 8) | public FrameworkElementSizeChangedRevoker(FrameworkElement source, Siz...
    method AddHandler (line 12) | protected override void AddHandler(FrameworkElement source, SizeChange...
    method RemoveHandler (line 17) | protected override void RemoveHandler(FrameworkElement source, SizeCha...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/Extensions.cs
  class Extensions (line 11) | internal static class Extensions
    method Flyout (line 13) | public static FlyoutBase Flyout(this Button button)
    method DefaultIfNullOrEmpty (line 18) | public static string DefaultIfNullOrEmpty(this string s, string defaul...
    method ExecuteWhenLoaded (line 28) | public static void ExecuteWhenLoaded(this FrameworkElement element, Ac...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/IControlProtected.cs
  type IControlProtected (line 8) | internal interface IControlProtected
    method GetTemplateChild (line 10) | DependencyObject GetTemplateChild(string childName);

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/LightDismissOverlayMode.cs
  type LightDismissOverlayMode (line 3) | public enum LightDismissOverlayMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/ListExtensions.cs
  class ListExtensions (line 6) | internal static class ListExtensions
    method Resize (line 8) | public static void Resize<T>(this List<T> list, int size, T element = ...
    method Last (line 25) | public static T Last<T>(this List<T> list)
    method RemoveLast (line 30) | public static void RemoveLast<T>(this List<T> list)
    method Empty (line 35) | public static bool Empty<T>(this List<T> list)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/PopupHelper.cs
  class PopupHelper (line 10) | internal static class PopupHelper
    method Reposition (line 12) | public static void Reposition(this Popup popup)
    method CreateRepositionDelegate (line 38) | private static Action<Popup> CreateRepositionDelegate()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/PopupRepositionHelper.cs
  class PopupRepositionHelper (line 7) | internal class PopupRepositionHelper : IDisposable
    method PopupRepositionHelper (line 9) | public PopupRepositionHelper(Popup popup, UIElement target)
    method Dispose (line 18) | public void Dispose()
    method OnPopupOpened (line 26) | private void OnPopupOpened(object sender, EventArgs e)
    method OnPopupClosed (line 44) | private void OnPopupClosed(object sender, EventArgs e)
    method OnTargetLayoutUpdated (line 58) | private void OnTargetLayoutUpdated(object sender, EventArgs e)
    method OnHostWindowLocationChanged (line 63) | private void OnHostWindowLocationChanged(object sender, EventArgs e)
    method RepositionPopup (line 68) | private void RepositionPopup()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/RoutedEventHandlerRevoker.cs
  class RoutedEventHandlerRevoker (line 6) | internal class RoutedEventHandlerRevoker
    method RoutedEventHandlerRevoker (line 8) | public RoutedEventHandlerRevoker(UIElement source, RoutedEvent routedE...
    method Revoke (line 21) | public void Revoke()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/SelectorHelper.cs
  class SelectorHelper (line 6) | internal static class SelectorHelper
    method ItemGetIsSelectable (line 8) | internal static bool ItemGetIsSelectable(object item)
    method UiGetIsSelectable (line 18) | internal static bool UiGetIsSelectable(DependencyObject o)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/SharedHelpers.cs
  class SharedHelpers (line 23) | internal static class SharedHelpers
    method IsRS1OrHigher (line 28) | public static bool IsRS1OrHigher() => true;
    method IsRS2OrHigher (line 30) | public static bool IsRS2OrHigher() => true;
    method IsRS3OrHigher (line 32) | public static bool IsRS3OrHigher() => true;
    method IsRS4OrHigher (line 34) | public static bool IsRS4OrHigher() => true;
    method IsRS5OrHigher (line 36) | public static bool IsRS5OrHigher() => true;
    method IsControlCornerRadiusAvailable (line 38) | public static bool IsControlCornerRadiusAvailable() => true;
    method IsThemeShadowAvailable (line 40) | public static bool IsThemeShadowAvailable() => false;
    method IsOnXbox (line 42) | public static bool IsOnXbox() => false;
    method QueueCallbackForCompositionRendering (line 44) | public static void QueueCallbackForCompositionRendering(Action callback)
    method DoRectsIntersect (line 57) | public static bool DoRectsIntersect(
    method FindResource (line 70) | public static object FindResource(string resource, ResourceDictionary ...
    method FindResource (line 76) | public static object FindResource(string resource, FrameworkElement el...
    method FindInApplicationResources (line 81) | public static object FindInApplicationResources(string resource, objec...
    method SetBinding (line 86) | public static void SetBinding(
    method IsFrameworkElementLoaded (line 99) | public static bool IsFrameworkElementLoaded(FrameworkElement framework...
    method GetAncestorOfType (line 104) | public static AncestorType GetAncestorOfType<AncestorType>(DependencyO...
    method ForwardCollectionChange (line 125) | internal static void ForwardCollectionChange<T>(
    method RaiseAutomationPropertyChangedEvent (line 153) | public static void RaiseAutomationPropertyChangedEvent(UIElement eleme...
    method MakeIconElementFrom (line 164) | public static IconElement MakeIconElementFrom(IconSource iconSource)
    method SetBinding (line 274) | public static BindingExpressionBase SetBinding(
    method CopyList (line 283) | public static void CopyList<T>(
    method GetActiveWindow (line 295) | public static Window GetActiveWindow()
    method SafeSubstring (line 305) | public static string SafeSubstring(this string s, int startIndex)
    method SafeSubstring (line 310) | public static string SafeSubstring(this string s, int startIndex, int ...
    method IndexOf (line 330) | public static bool IndexOf(this UIElementCollection collection, UIElem...
    method TryGetStringRepresentationFromObject (line 345) | public static string TryGetStringRepresentationFromObject(object obj)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Common/Utils.cs
  class VisualStateUtil (line 9) | internal static class VisualStateUtil
    method GoToStateIfGroupExists (line 28) | public static void GoToStateIfGroupExists(Control control, string grou...
  class LayoutUtils (line 38) | internal static class LayoutUtils
    method MeasureAndGetDesiredWidthFor (line 40) | public static double MeasureAndGetDesiredWidthFor(UIElement element, S...
    method GetActualWidthFor (line 51) | public static double GetActualWidthFor(FrameworkElement element)
  class Util (line 57) | internal static class Util
    method VisibilityFromBool (line 59) | public static Visibility VisibilityFromBool(bool visible)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsCard/SettingsCard.Properties.cs
  class SettingsCard (line 11) | public partial class SettingsCard
    method OnIsClickEnabledPropertyChanged (line 159) | protected virtual void OnIsClickEnabledPropertyChanged(bool oldValue, ...
    method OnHeaderIconPropertyChanged (line 163) | protected virtual void OnHeaderIconPropertyChanged(object oldValue, ob...
    method OnHeaderPropertyChanged (line 168) | protected virtual void OnHeaderPropertyChanged(object oldValue, object...
    method OnDescriptionPropertyChanged (line 173) | protected virtual void OnDescriptionPropertyChanged(object oldValue, o...
    method OnIsActionIconVisiblePropertyChanged (line 178) | protected virtual void OnIsActionIconVisiblePropertyChanged(bool oldVa...
    method OnContentAlignmentPropertyChanged (line 183) | protected virtual void OnContentAlignmentPropertyChanged(ContentAlignm...
  type ContentAlignment (line 190) | public enum ContentAlignment

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsCard/SettingsCard.cs
  class SettingsCard (line 23) | public partial class SettingsCard : ButtonBase
    method SettingsCard (line 48) | static SettingsCard()
    method SettingsCard (line 60) | public SettingsCard()
    method PointerStateProperties_ValueChanged (line 66) | private void PointerStateProperties_ValueChanged(object sender, EventA...
    method OnApplyTemplate (line 72) | public override void OnApplyTemplate()
    method SettingsCard_SizeChanged (line 90) | private void SettingsCard_SizeChanged(object sender, SizeChangedEventA...
    method ContentProperty_ValueChanged (line 95) | private static void ContentProperty_ValueChanged(DependencyObject d, D...
    method CheckInitialVisualState (line 104) | private void CheckInitialVisualState()
    method SetAccessibleContentName (line 117) | private void SetAccessibleContentName()
    method EnableButtonInteraction (line 129) | private void EnableButtonInteraction()
    method DisableButtonInteraction (line 138) | private void DisableButtonInteraction()
    method OnMouseLeftButtonDown (line 145) | protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
    method OnMouseLeftButtonUp (line 152) | protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
    method UpdatePointerState (line 227) | private void UpdatePointerState()
    method UpdateContentAlignmentState (line 254) | private void UpdateContentAlignmentState()
    method UpdateContentVisibilityStates (line 297) | public void UpdateContentVisibilityStates()
    method OnCreateAutomationPeer (line 313) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnIsClickEnabledChanged (line 318) | private void OnIsClickEnabledChanged()
    method OnIsEnabledChanged (line 331) | private void OnIsEnabledChanged(object sender, DependencyPropertyChang...
    method OnActionIconChanged (line 336) | private void OnActionIconChanged()
    method OnHeaderIconChanged (line 351) | private void OnHeaderIconChanged()
    method OnDescriptionChanged (line 361) | private void OnDescriptionChanged()
    method OnHeaderChanged (line 372) | private void OnHeaderChanged()
    method ContentAlignmentStates_Changed (line 383) | private void ContentAlignmentStates_Changed(object sender, VisualState...
    method CheckVerticalSpacingState (line 388) | private void CheckVerticalSpacingState(VisualState s)
    method IsNullOrEmptyString (line 416) | private static bool IsNullOrEmptyString(object obj)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsCard/SettingsCardAutomationPeer.cs
  class SettingsCardAutomationPeer (line 13) | public class SettingsCardAutomationPeer : FrameworkElementAutomationPeer
    method SettingsCardAutomationPeer (line 19) | public SettingsCardAutomationPeer(SettingsCard owner)
    method GetAutomationControlTypeCore (line 28) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetClassNameCore (line 45) | protected override string GetClassNameCore()
    method GetNameCore (line 50) | protected override string GetNameCore()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpander.Events.cs
  class SettingsExpander (line 9) | public partial class SettingsExpander

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpander.ItemsControl.cs
  class SettingsExpander (line 15) | public partial class SettingsExpander
    method OnItemsConnectedPropertyChanged (line 53) | private static void OnItemsConnectedPropertyChanged(DependencyObject d...
    method ItemsRepeater_ElementPrepared (line 68) | private void ItemsRepeater_ElementPrepared(ItemsRepeater sender, Items...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpander.Properties.cs
  class SettingsExpander (line 16) | [ContentProperty(name:nameof(Content))]
    method OnIsExpandedPropertyChanged (line 156) | protected virtual void OnIsExpandedPropertyChanged(bool oldValue, bool...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpander.cs
  class SettingsExpander (line 13) | [TemplatePart(Name = PART_ItemsRepeater, Type = typeof(ItemsRepeater))]
    method SettingsExpander (line 24) | public SettingsExpander()
    method OnApplyTemplate (line 31) | public override void OnApplyTemplate()
    method SetAccessibleName (line 52) | private void SetAccessibleName()
    method OnCreateAutomationPeer (line 67) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnIsExpandedChanged (line 72) | private void OnIsExpandedChanged(bool oldValue, bool newValue)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpanderAutomationPeer.cs
  class SettingsExpanderAutomationPeer (line 15) | public class SettingsExpanderAutomationPeer : FrameworkElementAutomation...
    method SettingsExpanderAutomationPeer (line 21) | public SettingsExpanderAutomationPeer(SettingsExpander owner)
    method GetAutomationControlTypeCore (line 30) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetClassNameCore (line 40) | protected override string GetClassNameCore()
    method GetNameCore (line 45) | protected override string GetNameCore()
    method RaiseExpandedChangedEvent (line 71) | public void RaiseExpandedChangedEvent(bool newValue)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Community/SettingsControls/SettingsExpander/SettingsExpanderItemStyleSelector.cs
  class SettingsExpanderItemStyleSelector (line 15) | public class SettingsExpanderItemStyleSelector : StyleSelector
    method SettingsExpanderItemStyleSelector (line 31) | public SettingsExpanderItemStyleSelector()
    method SelectStyle (line 37) | public override Style SelectStyle(object item, DependencyObject contai...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/LocalizedDialogCommands.cs
  class LocalizedDialogCommands (line 8) | internal static class LocalizedDialogCommands
    method GetString (line 29) | public static string GetString(DialogBoxCommand command)
    method MB_GetString (line 49) | [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
    type DialogBoxCommand (line 55) | public enum DialogBoxCommand : int

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBox.Helper.cs
  class MessageBox (line 13) | public partial class MessageBox
    method Show (line 25) | public static MessageBoxResult Show(string messageBoxText) =>
    method Show (line 35) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 45) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 56) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 67) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 79) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 91) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 103) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 115) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 128) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 141) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 154) | public static MessageBoxResult Show(string messageBoxText, string capt...
    method Show (line 167) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 180) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 193) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 207) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 222) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method Show (line 236) | public static MessageBoxResult Show(Window owner, string messageBoxTex...
    method ShowAsync (line 272) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText) =>
    method ShowAsync (line 282) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 292) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 303) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 314) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 326) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 339) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 351) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 363) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 376) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 390) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 403) | public static Task<MessageBoxResult> ShowAsync(string messageBoxText, ...
    method ShowAsync (line 416) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 430) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 443) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 457) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 471) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method ShowAsync (line 485) | public static Task<MessageBoxResult> ShowAsync(Window owner, string me...
    method GetActiveWindow (line 504) | private static Window GetActiveWindow() =>

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBox.cs
  class MessageBox (line 26) | public partial class MessageBox : Window
    method MessageBox (line 46) | static MessageBox()
    method MessageBox (line 53) | public MessageBox()
    method ExecuteCopy (line 67) | private void ExecuteCopy(object sender, ExecutedRoutedEventArgs e)
    method ThemeManager_AddActualThemeChanged (line 138) | private void ThemeManager_AddActualThemeChanged(object sender, RoutedE...
    method SystemBackdropTypeProperty_ValueChanged (line 153) | private void SystemBackdropTypeProperty_ValueChanged(object sender, Ev...
    method OnIconSourcePropertyChanged (line 524) | private static void OnIconSourcePropertyChanged(DependencyObject sende...
    method OnMessageBoxButtonsPropertyChanged (line 546) | private static void OnMessageBoxButtonsPropertyChanged(DependencyObjec...
    method OnButtonTextChanged (line 602) | private static void OnButtonTextChanged(DependencyObject d, Dependency...
    method OnIconSourcePropertyChanged (line 607) | void OnIconSourcePropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnApplyTemplate (line 620) | public override void OnApplyTemplate()
    method OnSourceInitialized (line 677) | protected override void OnSourceInitialized(EventArgs e)
    method OnButtonClick (line 684) | private void OnButtonClick(object sender, RoutedEventArgs e)
    method HandleButtonClick (line 720) | private void HandleButtonClick(
    method UpdateButtonTextState (line 752) | private void UpdateButtonTextState()
    method UpdateMessageState (line 761) | private void UpdateMessageState()
    method UpdateIconState (line 767) | private void UpdateIconState()
    method UpdateMessageBoxButtonState (line 773) | private void UpdateMessageBoxButtonState()
    method ShowDialog (line 855) | public new MessageBoxResult ShowDialog()
    method Close (line 861) | public void Close(MessageBoxResult result)
    method On_Loaded (line 892) | private void On_Loaded(object sender, RoutedEventArgs e)
    method TryExecuteCommand (line 909) | private static void TryExecuteCommand(ICommand command, object parameter)
    method ApplyDarkMode (line 917) | private void ApplyDarkMode()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxButtonClickDeferral.cs
  class MessageBoxButtonClickDeferral (line 5) | public sealed class MessageBoxButtonClickDeferral
    method MessageBoxButtonClickDeferral (line 9) | internal MessageBoxButtonClickDeferral(Action handler)
    method Complete (line 14) | public void Complete()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxButtonClickEventArgs.cs
  class MessageBoxButtonClickEventArgs (line 6) | public class MessageBoxButtonClickEventArgs : EventArgs
    method MessageBoxButtonClickEventArgs (line 11) | internal MessageBoxButtonClickEventArgs()
    method GetDeferral (line 17) | public MessageBoxButtonClickDeferral GetDeferral()
    method SetDeferral (line 27) | internal void SetDeferral(MessageBoxButtonClickDeferral deferral)
    method DecrementDeferralCount (line 32) | internal void DecrementDeferralCount()
    method IncrementDeferralCount (line 42) | internal void IncrementDeferralCount()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxClosedEventArgs.cs
  class MessageBoxClosedEventArgs (line 6) | public class MessageBoxClosedEventArgs : EventArgs
    method MessageBoxClosedEventArgs (line 8) | internal MessageBoxClosedEventArgs(MessageBoxResult result)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxClosingDeferral.cs
  class MessageBoxClosingDeferral (line 9) | public sealed class MessageBoxClosingDeferral
    method MessageBoxClosingDeferral (line 13) | internal MessageBoxClosingDeferral(Action handler)
    method Complete (line 18) | public void Complete()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxClosingEventArgs.cs
  class MessageBoxClosingEventArgs (line 7) | public sealed class MessageBoxClosingEventArgs : EventArgs
    method MessageBoxClosingEventArgs (line 12) | internal MessageBoxClosingEventArgs(MessageBoxResult result)
    method GetDeferral (line 21) | public MessageBoxClosingDeferral GetDeferral()
    method SetDeferral (line 31) | internal void SetDeferral(MessageBoxClosingDeferral deferral)
    method DecrementDeferralCount (line 36) | internal void DecrementDeferralCount()
    method IncrementDeferralCount (line 46) | internal void IncrementDeferralCount()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxImageExtensions.cs
  class MessageBoxImageExtensions (line 8) | internal static class MessageBoxImageExtensions
    method ToSymbol (line 10) | public static FontIconData ToSymbol(this MessageBoxImage image)
    method ToAlertSound (line 24) | public static SystemSound ToAlertSound(this MessageBoxImage image)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxOpenedEventArgs.cs
  class MessageBoxOpenedEventArgs (line 5) | public class MessageBoxOpenedEventArgs : EventArgs
    method MessageBoxOpenedEventArgs (line 7) | internal MessageBoxOpenedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Extended/MessageBox/MessageBoxTemplateSettings.cs
  class MessageBoxTemplateSettings (line 12) | public class MessageBoxTemplateSettings : DependencyObject
    method MessageBoxTemplateSettings (line 14) | internal MessageBoxTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBox.cs
  class AutoSuggestBox (line 22) | public sealed partial class AutoSuggestBox : ItemsControl
    method AutoSuggestBox (line 31) | static AutoSuggestBox()
    method AutoSuggestBox (line 36) | public AutoSuggestBox()
    method OnApplyTemplate (line 42) | public override void OnApplyTemplate()
    method OnItemsChanged (line 124) | protected override void OnItemsChanged(NotifyCollectionChangedEventArg...
    method OnItemsSourceChanged (line 131) | protected override void OnItemsSourceChanged(IEnumerable oldValue, IEn...
    method OnGotFocus (line 137) | protected override void OnGotFocus(RoutedEventArgs e)
    method OnIsKeyboardFocusWithinChanged (line 143) | protected override void OnIsKeyboardFocusWithinChanged(DependencyPrope...
    method OnTextChanged (line 153) | private void OnTextChanged(DependencyPropertyChangedEventArgs args)
    method OnIsSuggestionListOpenChanged (line 171) | private void OnIsSuggestionListOpenChanged(DependencyPropertyChangedEv...
    method OnQueryIconChanged (line 180) | private void OnQueryIconChanged(DependencyPropertyChangedEventArgs args)
    method OnQueryIconChanged (line 185) | private void OnQueryIconChanged(object oldQueryIcon, object newQueryIcon)
    method OnTextBoxTextChanged (line 216) | private void OnTextBoxTextChanged(object sender, TextChangedEventArgs e)
    method OnTextBoxPreviewKeyDown (line 226) | private void OnTextBoxPreviewKeyDown(object sender, KeyEventArgs e)
    method OnQueryButtonClick (line 275) | private void OnQueryButtonClick(object sender, RoutedEventArgs e)
    method OnSuggestionsPopupOpened (line 280) | private void OnSuggestionsPopupOpened(object sender, EventArgs e)
    method OnSuggestionsPopupClosed (line 285) | private void OnSuggestionsPopupClosed(object sender, EventArgs e)
    method OnSuggestionsListLoaded (line 290) | private void OnSuggestionsListLoaded(object sender, RoutedEventArgs e)
    method OnSuggestionsListSelectionChanged (line 296) | private void OnSuggestionsListSelectionChanged(object sender, Selectio...
    method OnSuggestionsListItemClick (line 334) | private void OnSuggestionsListItemClick(object sender, ItemClickEventA...
    method OnDelayTimerTick (line 340) | private void OnDelayTimerTick(object sender, EventArgs e)
    method UpdateTextValue (line 351) | private void UpdateTextValue(string value, AutoSuggestionBoxTextChange...
    method UpdateSearchText (line 361) | private void UpdateSearchText(string value)
    method UpdateTextBox (line 369) | private void UpdateTextBox()
    method UpdateQueryButton (line 383) | private void UpdateQueryButton()
    method OpenSuggestionList (line 393) | private void OpenSuggestionList()
    method CloseSuggestionList (line 401) | private void CloseSuggestionList()
    method OpenOrCloseSuggestionListIfFocused (line 409) | private void OpenOrCloseSuggestionListIfFocused()
    method SelectedIndexIncrement (line 424) | private void SelectedIndexIncrement()
    method SelectedIndexDecrement (line 433) | private void SelectedIndexDecrement()
    method ClearSelection (line 449) | private void ClearSelection()
    method TryCommitChosenSuggestion (line 460) | private bool TryCommitChosenSuggestion()
    method TryCommitTextBoxText (line 475) | private bool TryCommitTextBoxText()
    method SubmitQuery (line 490) | private void SubmitQuery(string queryText, object chosenSuggestion)
    method TryMoveCaretToEnd (line 499) | private bool TryMoveCaretToEnd()
    method UpdateCornerRadius (line 513) | private void UpdateCornerRadius(bool isPopupOpen)
    method IsPopupOpenDown (line 540) | private bool IsPopupOpenDown()
    method ResourceLookup (line 554) | private object ResourceLookup(object key)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBox.properties.cs
  class AutoSuggestBox (line 8) | partial class AutoSuggestBox
    method OnTextPropertyChanged (line 76) | private static void OnTextPropertyChanged(DependencyObject sender, Dep...
    method CoerceText (line 81) | private static object CoerceText(DependencyObject d, object baseValue)
    method OnIsSuggestionListOpenPropertyChanged (line 133) | private static void OnIsSuggestionListOpenPropertyChanged(DependencyOb...
    method OnQueryIconPropertyChanged (line 168) | private static void OnQueryIconPropertyChanged(DependencyObject sender...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxHelper.cs
  class AutoSuggestBoxHelper (line 15) | public sealed class AutoSuggestBoxHelper
    method AutoSuggestBoxHelper (line 24) | internal AutoSuggestBoxHelper()
    method GetKeepInteriorCornersSquare (line 35) | public static bool GetKeepInteriorCornersSquare(AutoSuggestBox autoSug...
    method SetKeepInteriorCornersSquare (line 40) | public static void SetKeepInteriorCornersSquare(AutoSuggestBox autoSug...
    method OnKeepInteriorCornersSquareChanged (line 51) | private static void OnKeepInteriorCornersSquareChanged(DependencyObjec...
    method OnAutoSuggestBoxLoaded (line 91) | private static void OnAutoSuggestBoxLoaded(object sender, object args)
    method UpdateCornerRadius (line 123) | private static void UpdateCornerRadius(AutoSuggestBox autoSuggestBox, ...
    method IsPopupOpenDown (line 150) | private static bool IsPopupOpenDown(AutoSuggestBox autoSuggestBox)
    method ResourceLookup (line 164) | private static object ResourceLookup(Control control, object key)
    method GetTemplateChild (line 169) | private static T GetTemplateChild<T>(string childName, Control control...
  class AutoSuggestEventRevokers (line 175) | internal class AutoSuggestEventRevokers
  class PopupOpenedRevoker (line 182) | internal class PopupOpenedRevoker
    method PopupOpenedRevoker (line 184) | public PopupOpenedRevoker(Popup source, EventHandler handler)
    method Revoke (line 195) | public void Revoke()
  class PopupClosedRevoker (line 205) | internal class PopupClosedRevoker
    method PopupClosedRevoker (line 207) | public PopupClosedRevoker(Popup source, EventHandler handler)
    method Revoke (line 218) | public void Revoke()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxListView.cs
  class AutoSuggestBoxListView (line 10) | public class AutoSuggestBoxListView : System.Windows.Controls.ListView
    method AutoSuggestBoxListView (line 12) | static AutoSuggestBoxListView()
    method OnApplyTemplate (line 36) | public override void OnApplyTemplate()
    method IsItemItsOwnContainerOverride (line 43) | protected override bool IsItemItsOwnContainerOverride(object item)
    method GetContainerForItemOverride (line 48) | protected override DependencyObject GetContainerForItemOverride()
    method NotifyListItemClicked (line 53) | internal void NotifyListItemClicked(AutoSuggestBoxListViewItem item, M...
    method ScrollToTop (line 79) | internal void ScrollToTop()
    method OnItemClick (line 84) | private void OnItemClick(AutoSuggestBoxListViewItem lvi)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxListViewItem.cs
  class AutoSuggestBoxListViewItem (line 8) | public class AutoSuggestBoxListViewItem : System.Windows.Controls.ListVi...
    method OnMouseLeftButtonDown (line 10) | protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
    method OnMouseLeftButtonUp (line 20) | protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
    method OnMouseLeave (line 31) | protected override void OnMouseLeave(MouseEventArgs e)
    method HandleMouseUp (line 40) | private void HandleMouseUp(MouseButton mouseButton)
    method OnKeyDown (line 48) | protected override void OnKeyDown(KeyEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxQuerySubmittedEventArgs.cs
  class AutoSuggestBoxQuerySubmittedEventArgs (line 6) | public sealed class AutoSuggestBoxQuerySubmittedEventArgs : EventArgs
    method AutoSuggestBoxQuerySubmittedEventArgs (line 8) | public AutoSuggestBoxQuerySubmittedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxSuggestionChosenEventArgs.cs
  class AutoSuggestBoxSuggestionChosenEventArgs (line 6) | public sealed class AutoSuggestBoxSuggestionChosenEventArgs : EventArgs
    method AutoSuggestBoxSuggestionChosenEventArgs (line 8) | public AutoSuggestBoxSuggestionChosenEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/AutoSuggestBox/AutoSuggestBoxTextChangedEventArgs.cs
  type AutoSuggestionBoxTextChangeReason (line 6) | public enum AutoSuggestionBoxTextChangeReason
  class AutoSuggestBoxTextChangedEventArgs (line 13) | public sealed class AutoSuggestBoxTextChangedEventArgs : EventArgs
    method AutoSuggestBoxTextChangedEventArgs (line 15) | public AutoSuggestBoxTextChangedEventArgs()
    method AutoSuggestBoxTextChangedEventArgs (line 19) | internal AutoSuggestBoxTextChangedEventArgs(AutoSuggestBox source, str...
    method CheckCurrent (line 28) | public bool CheckCurrent()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarButton.cs
  class AppBarButton (line 12) | public class AppBarButton : Button, ICommandBarElement, IAppBarElement
    method AppBarButton (line 14) | static AppBarButton()
    method AppBarButton (line 41) | public AppBarButton()
    method OnFlyoutChanged (line 98) | private static void OnFlyoutChanged(DependencyObject d, DependencyProp...
    method OnFlyoutChanged (line 103) | private void OnFlyoutChanged()
    method OnIsInOverflowChanged (line 202) | private static void OnIsInOverflowChanged(DependencyObject d, Dependen...
    method UpdateApplicationViewState (line 220) | private void UpdateApplicationViewState()
    method ComputeApplicationViewStateInOverflow (line 263) | private AppBarElementApplicationViewState ComputeApplicationViewStateI...
    method ApplyApplicationViewState (line 283) | private void ApplyApplicationViewState(bool useTransitions = true)
    method UpdateApplicationViewState (line 288) | void IAppBarElement.UpdateApplicationViewState()
    method ApplyApplicationViewState (line 293) | void IAppBarElement.ApplyApplicationViewState()
    method OnApplyTemplate (line 313) | public override void OnApplyTemplate()
    method OnVisualParentChanged (line 326) | protected override void OnVisualParentChanged(DependencyObject oldParent)
    method OnPropertyChanged (line 333) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnIsPressedChanged (line 347) | protected override void OnIsPressedChanged(DependencyPropertyChangedEv...
    method OnIsEnabledChanged (line 353) | private static void OnIsEnabledChanged(DependencyObject d, DependencyP...
    method OnCommandPropertyChanged (line 359) | private static void OnCommandPropertyChanged(DependencyObject d, Depen...
    method OnOverflowModePropertyChanged (line 366) | private static void OnOverflowModePropertyChanged(DependencyObject d, ...
    method OnDefaultLabelPositionPropertyChanged (line 371) | private static void OnDefaultLabelPositionPropertyChanged(DependencyOb...
    method OnShowKeyboardAcceleratorTextPropertyChanged (line 376) | private static void OnShowKeyboardAcceleratorTextPropertyChanged(Depen...
    method OnIsVisibleChanged (line 381) | private void OnIsVisibleChanged(object sender, DependencyPropertyChang...
    method UpdateVisualState (line 386) | private void UpdateVisualState(bool useTransitions = true)
    method UpdateCommonState (line 394) | private void UpdateCommonState(bool useTransitions = true)
    method UpdateKeyboardAcceleratorTextVisibility (line 433) | private void UpdateKeyboardAcceleratorTextVisibility(bool useTransitio...
    method UpdateFlyoutState (line 441) | private void UpdateFlyoutState(bool useTransitions = true)
  type AppBarButtonChevronStyle (line 450) | public enum AppBarButtonChevronStyle

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarElementApplicationViewState.cs
  type AppBarElementApplicationViewState (line 3) | internal enum AppBarElementApplicationViewState

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarElementContainer.cs
  class AppBarElementContainer (line 6) | public class AppBarElementContainer : ContentControl, ICommandBarElement
    method AppBarElementContainer (line 8) | static AppBarElementContainer()
    method AppBarElementContainer (line 17) | public AppBarElementContainer()
    method OnPropertyChanged (line 46) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnOverflowModePropertyChanged (line 56) | private static void OnOverflowModePropertyChanged(DependencyObject d, ...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarElementProperties.cs
  type IAppBarElement (line 11) | internal interface IAppBarElement
    method UpdateApplicationViewState (line 13) | void UpdateApplicationViewState();
    method ApplyApplicationViewState (line 14) | void ApplyApplicationViewState();
  class AppBarElementProperties (line 17) | internal static class AppBarElementProperties
    method OnIconChanged (line 28) | private static void OnIconChanged(DependencyObject d, DependencyProper...
    method OnLabelChanged (line 44) | private static void OnLabelChanged(DependencyObject d, DependencyPrope...
    method CoerceLabel (line 50) | private static object CoerceLabel(DependencyObject d, object value)
    method OnLabelPositionChanged (line 80) | private static void OnLabelPositionChanged(DependencyObject d, Depende...
    method OnIsCompactChanged (line 96) | private static void OnIsCompactChanged(DependencyObject d, DependencyP...
    method OnIsInOverflowChanged (line 115) | private static void OnIsInOverflowChanged(DependencyObject d, Dependen...
    method UpdateIsInOverflow (line 122) | internal static void UpdateIsInOverflow(DependencyObject element)
    method OnApplicationViewStateChanged (line 144) | private static void OnApplicationViewStateChanged(DependencyObject d, ...
    method OnInputGestureTextChanged (line 163) | private static void OnInputGestureTextChanged(DependencyObject d, Depe...
    method CoerceInputGestureText (line 170) | private static object CoerceInputGestureText(DependencyObject d, objec...
    method OnHasInputGestureTextChanged (line 210) | private static void OnHasInputGestureTextChanged(DependencyObject d, D...
    method UpdateHasInputGestureText (line 215) | private static void UpdateHasInputGestureText(DependencyObject element...
    method GetShowKeyboardAcceleratorText (line 230) | internal static bool GetShowKeyboardAcceleratorText(DependencyObject e...
    method SetShowKeyboardAcceleratorText (line 235) | private static void SetShowKeyboardAcceleratorText(DependencyObject el...
    method UpdateShowKeyboardAcceleratorText (line 240) | private static void UpdateShowKeyboardAcceleratorText(FrameworkElement...
    method CoerceToolTip (line 252) | internal static object CoerceToolTip(DependencyObject d, object baseVa...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarElementVisualStateManager.cs
  class AppBarElementVisualStateManager (line 5) | internal class AppBarElementVisualStateManager : VisualStateManager
    method GoToStateCore (line 9) | protected override bool GoToStateCore(

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarRepeatButton.cs
  class AppBarRepeatButton (line 12) | public class AppBarRepeatButton : RepeatButton, ICommandBarElement, IApp...
    method AppBarRepeatButton (line 14) | static AppBarRepeatButton()
    method AppBarRepeatButton (line 41) | public AppBarRepeatButton()
    method OnFlyoutChanged (line 98) | private static void OnFlyoutChanged(DependencyObject d, DependencyProp...
    method OnFlyoutChanged (line 103) | private void OnFlyoutChanged()
    method OnIsInOverflowChanged (line 186) | private static void OnIsInOverflowChanged(DependencyObject d, Dependen...
    method UpdateApplicationViewState (line 204) | private void UpdateApplicationViewState()
    method ComputeApplicationViewStateInOverflow (line 247) | private AppBarElementApplicationViewState ComputeApplicationViewStateI...
    method ApplyApplicationViewState (line 267) | private void ApplyApplicationViewState(bool useTransitions = true)
    method UpdateApplicationViewState (line 272) | void IAppBarElement.UpdateApplicationViewState()
    method ApplyApplicationViewState (line 277) | void IAppBarElement.ApplyApplicationViewState()
    method OnApplyTemplate (line 297) | public override void OnApplyTemplate()
    method OnVisualParentChanged (line 310) | protected override void OnVisualParentChanged(DependencyObject oldParent)
    method OnPropertyChanged (line 317) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnIsPressedChanged (line 331) | protected override void OnIsPressedChanged(DependencyPropertyChangedEv...
    method OnIsEnabledChanged (line 337) | private static void OnIsEnabledChanged(DependencyObject d, DependencyP...
    method OnCommandPropertyChanged (line 343) | private static void OnCommandPropertyChanged(DependencyObject d, Depen...
    method OnOverflowModePropertyChanged (line 350) | private static void OnOverflowModePropertyChanged(DependencyObject d, ...
    method OnDefaultLabelPositionPropertyChanged (line 355) | private static void OnDefaultLabelPositionPropertyChanged(DependencyOb...
    method OnShowKeyboardAcceleratorTextPropertyChanged (line 360) | private static void OnShowKeyboardAcceleratorTextPropertyChanged(Depen...
    method OnIsVisibleChanged (line 365) | private void OnIsVisibleChanged(object sender, DependencyPropertyChang...
    method UpdateVisualState (line 370) | private void UpdateVisualState(bool useTransitions = true)
    method UpdateCommonState (line 378) | private void UpdateCommonState(bool useTransitions = true)
    method UpdateKeyboardAcceleratorTextVisibility (line 417) | private void UpdateKeyboardAcceleratorTextVisibility(bool useTransitio...
    method UpdateFlyoutState (line 425) | private void UpdateFlyoutState(bool useTransitions = true)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarSeparator.cs
  class AppBarSeparator (line 6) | public class AppBarSeparator : Control, ICommandBarElement, IAppBarElement
    method AppBarSeparator (line 8) | static AppBarSeparator()
    method AppBarSeparator (line 23) | public AppBarSeparator()
    method OnIsInOverflowChanged (line 51) | private static void OnIsInOverflowChanged(DependencyObject d, Dependen...
    method UpdateApplicationViewState (line 69) | private void UpdateApplicationViewState()
    method UpdateApplicationViewState (line 89) | void IAppBarElement.UpdateApplicationViewState()
    method ApplyApplicationViewState (line 94) | void IAppBarElement.ApplyApplicationViewState()
    method OnApplyTemplate (line 101) | public override void OnApplyTemplate()
    method OnPropertyChanged (line 107) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnOverflowModePropertyChanged (line 117) | private static void OnOverflowModePropertyChanged(DependencyObject d, ...
    method OnIsVisibleChanged (line 122) | private void OnIsVisibleChanged(object sender, DependencyPropertyChang...
    method UpdateVisualState (line 127) | private void UpdateVisualState(bool useTransitions = true)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/AppBarToggleButton.cs
  class AppBarToggleButton (line 12) | public class AppBarToggleButton : ToggleButton, ICommandBarElement, IApp...
    method AppBarToggleButton (line 14) | static AppBarToggleButton()
    method AppBarToggleButton (line 44) | public AppBarToggleButton()
    method OnIsInOverflowChanged (line 150) | private static void OnIsInOverflowChanged(DependencyObject d, Dependen...
    method UpdateApplicationViewState (line 168) | private void UpdateApplicationViewState()
    method ComputeApplicationViewStateInOverflow (line 211) | private AppBarElementApplicationViewState ComputeApplicationViewStateI...
    method ApplyApplicationViewState (line 217) | private void ApplyApplicationViewState(bool useTransitions = true)
    method UpdateApplicationViewState (line 222) | void IAppBarElement.UpdateApplicationViewState()
    method ApplyApplicationViewState (line 227) | void IAppBarElement.ApplyApplicationViewState()
    method OnApplyTemplate (line 247) | public override void OnApplyTemplate()
    method OnVisualParentChanged (line 260) | protected override void OnVisualParentChanged(DependencyObject oldParent)
    method OnPropertyChanged (line 267) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnIsPressedChanged (line 281) | protected override void OnIsPressedChanged(DependencyPropertyChangedEv...
    method OnIsEnabledChanged (line 287) | private static void OnIsEnabledChanged(DependencyObject d, DependencyP...
    method OnCommandPropertyChanged (line 293) | private static void OnCommandPropertyChanged(DependencyObject d, Depen...
    method OnIsCheckedChanged (line 300) | private static void OnIsCheckedChanged(DependencyObject d, DependencyP...
    method OnOverflowModePropertyChanged (line 306) | private static void OnOverflowModePropertyChanged(DependencyObject d, ...
    method OnDefaultLabelPositionPropertyChanged (line 311) | private static void OnDefaultLabelPositionPropertyChanged(DependencyOb...
    method OnShowKeyboardAcceleratorTextPropertyChanged (line 316) | private static void OnShowKeyboardAcceleratorTextPropertyChanged(Depen...
    method OnIsVisibleChanged (line 321) | private void OnIsVisibleChanged(object sender, DependencyPropertyChang...
    method UpdateVisualState (line 326) | private void UpdateVisualState(bool useTransitions = true)
    method UpdateCommonState (line 332) | private void UpdateCommonState(bool useTransitions = true)
    method UpdateKeyboardAcceleratorTextVisibility (line 379) | private void UpdateKeyboardAcceleratorTextVisibility(bool useTransitio...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBar.cs
  class CommandBar (line 15) | [ContentProperty(nameof(PrimaryCommands))]
    method CommandBar (line 19) | static CommandBar()
    method CommandBar (line 24) | public CommandBar()
    method PrimaryCommands_CollectionChanged (line 101) | private void PrimaryCommands_CollectionChanged(object sender, NotifyCo...
    method SecondaryCommands_CollectionChanged (line 117) | private void SecondaryCommands_CollectionChanged(object sender, Notify...
    method OnIsDynamicOverflowEnabledChanged (line 171) | private static void OnIsDynamicOverflowEnabledChanged(DependencyObject...
    method OnIsDynamicOverflowEnabledChanged (line 176) | private  void OnIsDynamicOverflowEnabledChanged()
    method UpdateOverflowModeForPrimaryCommands (line 182) | private void UpdateOverflowModeForPrimaryCommands(IEnumerable<Dependen...
    method UpdateOverflowModeForSecondaryCommands (line 191) | private void UpdateOverflowModeForSecondaryCommands(IEnumerable<Depend...
    method OnApplyTemplate (line 218) | public override void OnApplyTemplate()
    method OnOverflowOpened (line 249) | private void OnOverflowOpened(object sender, EventArgs e)
    method OnOverflowClosed (line 254) | private void OnOverflowClosed(object sender, EventArgs e)
    method OnHasPrimaryCommandsChanged (line 259) | private void OnHasPrimaryCommandsChanged(object sender, EventArgs e)
    method OnHasOverflowItemsChanged (line 264) | private void OnHasOverflowItemsChanged(object sender, EventArgs e)
    method UpdateVisualState (line 269) | internal void UpdateVisualState(bool useTransitions = true)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarDefaultLabelPosition.cs
  type CommandBarDefaultLabelPosition (line 3) | public enum CommandBarDefaultLabelPosition

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarLabelPosition.cs
  type CommandBarLabelPosition (line 3) | public enum CommandBarLabelPosition

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarOverflowButtonVisibility.cs
  type CommandBarOverflowButtonVisibility (line 3) | public enum CommandBarOverflowButtonVisibility

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarOverflowPanel.cs
  class CommandBarOverflowPanel (line 8) | public class CommandBarOverflowPanel : ToolBarOverflowPanel
    method CommandBarOverflowPanel (line 10) | public CommandBarOverflowPanel()
    method MeasureOverride (line 19) | protected override Size MeasureOverride(Size constraint)
    method ArrangeOverride (line 50) | protected override Size ArrangeOverride(Size arrangeBounds)
    method OnVisualChildrenChanged (line 72) | protected override void OnVisualChildrenChanged(DependencyObject visua...
    method UpdateChildrenApplicationViewState (line 87) | private void UpdateChildrenApplicationViewState()
    method IsPrimaryCommand (line 151) | private bool IsPrimaryCommand(DependencyObject element)
    method UpdateSeparatorVisibility (line 156) | private void UpdateSeparatorVisibility(int index, AppBarSeparator sepa...
    method RestoreSeparatorVisibility (line 172) | private void RestoreSeparatorVisibility(AppBarSeparator separator)
    method OnLoaded (line 181) | private void OnLoaded(object sender, RoutedEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarOverflowPresenter.cs
  class CommandBarOverflowPresenter (line 7) | public class CommandBarOverflowPresenter : ContentControl
    method CommandBarOverflowPresenter (line 9) | static CommandBarOverflowPresenter()
    method CommandBarOverflowPresenter (line 15) | public CommandBarOverflowPresenter()
    method OnApplyTemplate (line 34) | public override void OnApplyTemplate()
    method OnLoaded (line 41) | private void OnLoaded(object sender, RoutedEventArgs e)
    method OnUnloaded (line 49) | private void OnUnloaded(object sender, RoutedEventArgs e)
    method UpdateVisualState (line 54) | private void UpdateVisualState(bool useTransitions)
    method IsPopupOpenDown (line 70) | private bool IsPopupOpenDown()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarPanel.cs
  class CommandBarPanel (line 7) | public class CommandBarPanel : ToolBarPanel
    method OnVisualChildrenChanged (line 24) | protected override void OnVisualChildrenChanged(DependencyObject visua...
    method UpdateHasChildren (line 30) | private void UpdateHasChildren()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/CommandBarToolBar.cs
  class CommandBarToolBar (line 14) | [TemplatePart(Name = OverflowPopupName, Type = typeof(Popup))]
    method CommandBarToolBar (line 17) | static CommandBarToolBar()
    method CommandBarToolBar (line 29) | public CommandBarToolBar()
    method OnOverflowButtonVisibilityChanged (line 97) | private static void OnOverflowButtonVisibilityChanged(DependencyObject...
    method UpdateOverflowContentMaxHeight (line 139) | private void UpdateOverflowContentMaxHeight()
    method CalculateOverflowContentMaxHeight (line 144) | private static double CalculateOverflowContentMaxHeight()
    method OnEffectiveOverflowButtonVisibilityChanged (line 169) | private static void OnEffectiveOverflowButtonVisibilityChanged(Depende...
    method OnEffectiveOverflowButtonVisibilityChanged (line 174) | private void OnEffectiveOverflowButtonVisibilityChanged()
    method UpdateEffectiveOverflowButtonVisibility (line 179) | private void UpdateEffectiveOverflowButtonVisibility()
    method OnApplyTemplate (line 210) | public override void OnApplyTemplate()
    method PrepareContainerForItemOverride (line 265) | protected override void PrepareContainerForItemOverride(DependencyObje...
    method ClearContainerForItemOverride (line 278) | protected override void ClearContainerForItemOverride(DependencyObject...
    method OnPropertyChanged (line 290) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method OnPreviewKeyDown (line 301) | protected override void OnPreviewKeyDown(KeyEventArgs e)
    method HandleUpDownForOverflow (line 307) | private void HandleUpDownForOverflow(KeyEventArgs e)
    method OnKeyDown (line 344) | protected override void OnKeyDown(KeyEventArgs e)
    method CheckIfSpecialNextTabFocus (line 380) | private bool CheckIfSpecialNextTabFocus(IInputElement focusedControl,b...
    method OnIsOverflowOpenChanged (line 414) | private static void OnIsOverflowOpenChanged(DependencyObject d, Depend...
    method InvalidateLayout (line 419) | private void InvalidateLayout()
    method OnOverflowPopupOpened (line 436) | private void OnOverflowPopupOpened(object sender, EventArgs e)
    method OnOverflowPopupClosed (line 442) | private void OnOverflowPopupClosed(object sender, EventArgs e)
    method OnToolBarPanelHasChildrenChanged (line 447) | private void OnToolBarPanelHasChildrenChanged(object sender, EventArgs e)
    method PositionOverflowPopup (line 452) | private CustomPopupPlacement[] PositionOverflowPopup(Size popupSize, S...
    method UpdateMoreButtonTooTip (line 462) | private void UpdateMoreButtonTooTip()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBar/ICommandBarElement.cs
  type ICommandBarElement (line 3) | public interface ICommandBarElement

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBarFlyout/CommandBarFlyout.cs
  class CommandBarFlyout (line 17) | [ContentProperty(nameof(PrimaryCommands))]
    method CommandBarFlyout (line 20) | public CommandBarFlyout()
    method CreatePresenter (line 207) | protected override Control CreatePresenter()
    method SetSecondaryCommandsToCloseWhenExecuted (line 243) | private void SetSecondaryCommandsToCloseWhenExecuted()
    method RevokeAndRemove (line 272) | private static void RevokeAndRemove(IDictionary<ICommandBarElement, Ro...
    method RevokeAndClear (line 281) | private static void RevokeAndClear(IDictionary<ICommandBarElement, Rou...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBarFlyout/CommandBarFlyoutCommandBar.cs
  class CommandBarFlyoutCommandBar (line 7) | [TemplatePart(Name = ToolBarName, Type = typeof(CommandBarFlyoutToolBar))]
    method CommandBarFlyoutCommandBar (line 10) | static CommandBarFlyoutCommandBar()
    method CommandBarFlyoutCommandBar (line 16) | public CommandBarFlyoutCommandBar()
    method SetOwningFlyout (line 23) | internal void SetOwningFlyout(
    method HasOpenAnimation (line 29) | internal bool HasOpenAnimation()
    method PlayOpenAnimation (line 34) | internal void PlayOpenAnimation()
    method HasCloseAnimation (line 39) | internal bool HasCloseAnimation()
    method PlayCloseAnimation (line 44) | internal void PlayCloseAnimation(Action onCompleteFunc)
    method ClearShadow (line 49) | internal void ClearShadow()
    method OnApplyTemplate (line 54) | public override void OnApplyTemplate()
    method OnIsVisibleChanged (line 61) | private void OnIsVisibleChanged(object sender, DependencyPropertyChang...
    method OnPostProcessInput (line 73) | private void OnPostProcessInput(object sender, ProcessInputEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBarFlyout/CommandBarFlyoutCommandBarTemplateSettings.cs
  class CommandBarFlyoutCommandBarTemplateSettings (line 8) | public sealed class CommandBarFlyoutCommandBarTemplateSettings : Depende...
    method CommandBarFlyoutCommandBarTemplateSettings (line 10) | internal CommandBarFlyoutCommandBarTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBarFlyout/CommandBarFlyoutCommandBarTemplateSettingsProxy.cs
  class CommandBarFlyoutCommandBarTemplateSettingsProxy (line 5) | public class CommandBarFlyoutCommandBarTemplateSettingsProxy : Freezable
    method CreateInstanceCore (line 20) | protected override Freezable CreateInstanceCore()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/CommandBarFlyout/CommandBarFlyoutToolBar.cs
  class CommandBarFlyoutToolBar (line 21) | public class CommandBarFlyoutToolBar : CommandBarToolBar
    method CommandBarFlyoutToolBar (line 23) | static CommandBarFlyoutToolBar()
    method CommandBarFlyoutToolBar (line 32) | public CommandBarFlyoutToolBar()
    method OnInitialized (line 112) | protected override void OnInitialized(EventArgs e)
    method OnApplyTemplate (line 159) | public override void OnApplyTemplate()
    method OnIsKeyboardFocusWithinChanged (line 195) | protected override void OnIsKeyboardFocusWithinChanged(DependencyPrope...
    method OnOverflowOpenChanged (line 211) | private static void OnOverflowOpenChanged(DependencyObject element, De...
    method OnOverflowOpenChanged (line 216) | private void OnOverflowOpenChanged(DependencyPropertyChangedEventArgs e)
    method AttachEventHandlers (line 222) | void AttachEventHandlers()
    method DetachEventHandlers (line 243) | void DetachEventHandlers()
    method HasOpenAnimation (line 268) | internal bool HasOpenAnimation()
    method PlayOpenAnimation (line 273) | internal void PlayOpenAnimation()
    method HasCloseAnimation (line 298) | internal bool HasCloseAnimation()
    method PlayCloseAnimation (line 303) | internal void PlayCloseAnimation(
    method UpdateFlowsFromAndFlowsTo (line 329) | void UpdateFlowsFromAndFlowsTo()
    method UpdateUI (line 403) | void UpdateUI(
    method UpdateVisualState (line 417) | void UpdateVisualState(
    method UpdateTemplateSettings (line 508) | void UpdateTemplateSettings()
    method EnsureAutomationSetCountAndPosition (line 622) | void EnsureAutomationSetCountAndPosition()
    method EnsureFocusedPrimaryCommand (line 663) | void EnsureFocusedPrimaryCommand()
    method OnPreviewKeyDown (line 696) | protected override void OnPreviewKeyDown(KeyEventArgs e)
    method OnKeyDown (line 707) | protected override void OnKeyDown(KeyEventArgs args)
    method IsControlFocusable (line 870) | bool IsControlFocusable(
    method GetFirstTabStopControl (line 880) | Control GetFirstTabStopControl(
    method FocusControl (line 896) | bool FocusControl(
    method FocusCommand (line 919) | bool FocusCommand(
    method EnsureTabStopUniqueness (line 979) | void EnsureTabStopUniqueness(
    method UpdateShadow (line 1025) | void UpdateShadow()
    method AddShadow (line 1037) | void AddShadow()
    method ClearShadow (line 1041) | internal void ClearShadow()
    method SecondaryItemsRootSizeChanged (line 1045) | private void SecondaryItemsRootSizeChanged(object sender, SizeChangedE...
    method SecondaryItemsRootPreviewKeyDown (line 1051) | private void SecondaryItemsRootPreviewKeyDown(object sender, KeyEventA...
    method OpeningStoryboardCompleted (line 1157) | private void OpeningStoryboardCompleted(object sender, EventArgs e)
    method ClosingStoryboardCompleted (line 1162) | private void ClosingStoryboardCompleted(object sender, EventArgs e)
    method OpeningStoryboardCurrentStateInvalidated (line 1168) | private void OpeningStoryboardCurrentStateInvalidated(object sender, E...
    method ClosingStoryboardCurrentStateInvalidated (line 1174) | private void ClosingStoryboardCurrentStateInvalidated(object sender, E...
    method CancelAsyncOpenAnimation (line 1180) | private void CancelAsyncOpenAnimation()
    method StopOpenAnimation (line 1189) | private void StopOpenAnimation()
    method OnMouseDown (line 1205) | private void OnMouseDown(object sender, MouseButtonEventArgs e)
    method TryGetOwningFlyout (line 1217) | private bool TryGetOwningFlyout(out CommandBarFlyout flyout)
    method SetOpacity (line 1231) | private void SetOpacity(double value)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialog.cs
  class ContentDialog (line 19) | [TemplatePart(Name = nameof(Container), Type = typeof(Border))]
    method ContentDialog (line 48) | static ContentDialog()
    method ContentDialog (line 57) | public ContentDialog()
    method OnDefaultButtonChanged (line 353) | private static void OnDefaultButtonChanged(DependencyObject d, Depende...
    method OnFullSizeDesiredChanged (line 375) | private static void OnFullSizeDesiredChanged(DependencyObject d, Depen...
    method GetOpenDialog (line 424) | public static ContentDialog GetOpenDialog(Window window)
    method SetOpenDialog (line 429) | private static void SetOpenDialog(Window window, ContentDialog value)
    method ShowAsync (line 511) | public async Task<ContentDialogResult> ShowAsync()
    method ShowAsync (line 528) | public async Task<ContentDialogResult> ShowAsync(Window owner)
    method ShowAsync (line 572) | public Task<ContentDialogResult> ShowAsync(ContentDialogPlacement plac...
    method Hide (line 591) | public void Hide()
    method OnApplyTemplate (line 596) | public override void OnApplyTemplate()
    method OnKeyDown (line 660) | protected override void OnKeyDown(KeyEventArgs e)
    method Hide (line 666) | private void Hide(ContentDialogResult result)
    method OnButtonClick (line 700) | private void OnButtonClick(object sender, RoutedEventArgs e)
    method HandleButtonClick (line 728) | private void HandleButtonClick(
    method OnLayoutRootLoaded (line 765) | private void OnLayoutRootLoaded(object sender, RoutedEventArgs e)
    method OnLayoutRootIsVisibleChanged (line 770) | private void OnLayoutRootIsVisibleChanged(object sender, DependencyPro...
    method OnLayoutRootKeyDown (line 795) | private void OnLayoutRootKeyDown(object sender, KeyEventArgs e)
    method OnCloseTimerTick (line 800) | private void OnCloseTimerTick(object sender, EventArgs e)
    method OnOpened (line 807) | private void OnOpened()
    method OnClosed (line 816) | private void OnClosed()
    method HandleKeyDown (line 837) | private void HandleKeyDown(KeyEventArgs e)
    method UpdateVisualStates (line 879) | private void UpdateVisualStates(bool useTransitions)
    method UpdateDialogShowingStates (line 887) | private void UpdateDialogShowingStates(bool useTransitions)
    method UpdateButtonsVisibilityStates (line 899) | private void UpdateButtonsVisibilityStates(bool useTransitions)
    method UpdateDefaultButtonStates (line 947) | private void UpdateDefaultButtonStates(bool useTransitions)
    method EnsureAdornerLayer (line 967) | private void EnsureAdornerLayer(ContentPresenter contentPresenter)
    method DisconnectAdornerChild (line 976) | private void DisconnectAdornerChild()
    method EnsureAdornerChild (line 984) | private void EnsureAdornerChild(ContentPresenter cp, UIElement child)
    method AddPopup (line 996) | private void AddPopup()
    method RemovePopup (line 1006) | private void RemovePopup()
    method OnBackRequested (line 1017) | private static void OnBackRequested(object sender, BackRequestedEventA...
    method OnApplicationActivated (line 1030) | private void OnApplicationActivated(object sender, EventArgs e)
    method OnOwnerActivated (line 1040) | private void OnOwnerActivated(object sender, EventArgs e)
    method WaitUntilApplicationActivated (line 1051) | private Task WaitUntilApplicationActivated()
    method WaitUntilOwnerActivated (line 1058) | private Task WaitUntilOwnerActivated(Window owner)
    method OnButtonTextChanged (line 1065) | private static void OnButtonTextChanged(DependencyObject d, Dependency...
    method TryExecuteCommand (line 1070) | private static void TryExecuteCommand(ICommand command, object parameter)
    method ThrowIfHasOpenDialog (line 1078) | private void ThrowIfHasOpenDialog(Window owner)
    method ThrowAlreadyOpenException (line 1086) | private static void ThrowAlreadyOpenException()
    method FindContentPresenter (line 1091) | private static ContentPresenter FindContentPresenter(Window window)
    method CreateAsyncOperation (line 1112) | private Task<ContentDialogResult> CreateAsyncOperation()
    method DisableKeyboardNavigation (line 1118) | private static void DisableKeyboardNavigation(DependencyObject element)
    method RestoreKeyboardNavigation (line 1125) | private static void RestoreKeyboardNavigation(UIElement element)
    class ContentDialogAdorner (line 1132) | private class ContentDialogAdorner : Adorner
      method ContentDialogAdorner (line 1136) | public ContentDialogAdorner(UIElement adornedElement, UIElement chil...
      method GetVisualChild (line 1165) | protected override Visual GetVisualChild(int index)
      method MeasureOverride (line 1177) | protected override Size MeasureOverride(Size constraint)
      method ArrangeOverride (line 1185) | protected override Size ArrangeOverride(Size size)
    method DialogShowingStates_CurrentStateChanging (line 1194) | private void DialogShowingStates_CurrentStateChanging(object sender, V...
    method DialogShowingStates_CurrentStateChanged (line 1202) | private void DialogShowingStates_CurrentStateChanged(object sender, Vi...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogButton.cs
  type ContentDialogButton (line 9) | public enum ContentDialogButton

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogButtonClickDeferral.cs
  class ContentDialogButtonClickDeferral (line 5) | public sealed class ContentDialogButtonClickDeferral
    method ContentDialogButtonClickDeferral (line 9) | internal ContentDialogButtonClickDeferral(Action handler)
    method Complete (line 14) | public void Complete()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogButtonClickEventArgs.cs
  class ContentDialogButtonClickEventArgs (line 6) | public class ContentDialogButtonClickEventArgs : EventArgs
    method ContentDialogButtonClickEventArgs (line 11) | internal ContentDialogButtonClickEventArgs()
    method GetDeferral (line 17) | public ContentDialogButtonClickDeferral GetDeferral()
    method SetDeferral (line 27) | internal void SetDeferral(ContentDialogButtonClickDeferral deferral)
    method DecrementDeferralCount (line 32) | internal void DecrementDeferralCount()
    method IncrementDeferralCount (line 42) | internal void IncrementDeferralCount()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogClosedEventArgs.cs
  class ContentDialogClosedEventArgs (line 5) | public class ContentDialogClosedEventArgs : EventArgs
    method ContentDialogClosedEventArgs (line 7) | internal ContentDialogClosedEventArgs(ContentDialogResult result)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogClosingDeferral.cs
  class ContentDialogClosingDeferral (line 9) | public sealed class ContentDialogClosingDeferral
    method ContentDialogClosingDeferral (line 13) | internal ContentDialogClosingDeferral(Action handler)
    method Complete (line 18) | public void Complete()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogClosingEventArgs.cs
  class ContentDialogClosingEventArgs (line 6) | public sealed class ContentDialogClosingEventArgs : EventArgs
    method ContentDialogClosingEventArgs (line 11) | internal ContentDialogClosingEventArgs(ContentDialogResult result)
    method GetDeferral (line 20) | public ContentDialogClosingDeferral GetDeferral()
    method SetDeferral (line 30) | internal void SetDeferral(ContentDialogClosingDeferral deferral)
    method DecrementDeferralCount (line 35) | internal void DecrementDeferralCount()
    method IncrementDeferralCount (line 45) | internal void IncrementDeferralCount()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogOpenedEventArgs.cs
  class ContentDialogOpenedEventArgs (line 5) | public class ContentDialogOpenedEventArgs : EventArgs
    method ContentDialogOpenedEventArgs (line 7) | internal ContentDialogOpenedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogPlacement.cs
  type ContentDialogPlacement (line 9) | public enum ContentDialogPlacement

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ContentDialog/ContentDialogResult.cs
  type ContentDialogResult (line 3) | public enum ContentDialogResult

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/DropDownButton/DropDownButton.cs
  class DropDownButton (line 15) | public class DropDownButton : Button
    method DropDownButton (line 17) | static DropDownButton()
    method DropDownButton (line 22) | public DropDownButton()
    method OnFlyoutPropertyChanged (line 92) | private static void OnFlyoutPropertyChanged(DependencyObject d, Depend...
    method OnFlyoutPropertyChanged (line 97) | private void OnFlyoutPropertyChanged(DependencyPropertyChangedEventArg...
    method OpenFlyout (line 131) | internal void OpenFlyout()
    method CloseFlyout (line 136) | internal void CloseFlyout()
    method OnFlyoutOpened (line 141) | private void OnFlyoutOpened(object sender, object e)
    method OnFlyoutClosed (line 147) | private void OnFlyoutClosed(object sender, object e)
    method OnCreateAutomationPeer (line 153) | protected override AutomationPeer OnCreateAutomationPeer()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/DropDownButton/DropDownButtonAutomationPeer.cs
  class DropDownButtonAutomationPeer (line 11) | public class DropDownButtonAutomationPeer : ButtonAutomationPeer, IExpan...
    method DropDownButtonAutomationPeer (line 13) | public DropDownButtonAutomationPeer(DropDownButton owner) : base(owner)
    method GetPattern (line 17) | public override object GetPattern(PatternInterface patternInterface)
    method GetClassNameCore (line 27) | protected override string GetClassNameCore()
    method GetImpl (line 32) | private DropDownButton GetImpl()
    method Expand (line 63) | public void Expand()
    method Collapse (line 72) | public void Collapse()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/FlipView/Enums.cs
  type TransitionType (line 12) | public enum TransitionType
  type NavigationIndexPlacement (line 63) | public enum NavigationIndexPlacement
  type NavigationButtonsPosition (line 106) | public enum NavigationButtonsPosition

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/FlipView/FlipView.cs
  class FlipView (line 26) | [TemplatePart(Name = PART_Presenter, Type = typeof(TransitioningContentC...
    method OnIsBannerEnabledPropertyChangedCallback (line 315) | private static void OnIsBannerEnabledPropertyChangedCallback(Dependenc...
    method FlipView (line 758) | static FlipView()
    method FlipView (line 798) | public FlipView()
    method CoerceSelectedIndexProperty (line 809) | private static object CoerceSelectedIndexProperty(DependencyObject d, ...
    method GoBack (line 823) | public void GoBack()
    method GoForward (line 856) | public void GoForward()
    method ShowControlButtons (line 889) | public void ShowControlButtons()
    method HideControlButtons (line 897) | public void HideControlButtons()
    method OnApplyTemplate (line 902) | public override void OnApplyTemplate()
    method NavigationButtonMouseEnter (line 991) | private void NavigationButtonMouseEnter(object sender, MouseEventArgs e)
    method NavigationButtonMouseLeave (line 999) | private void NavigationButtonMouseLeave(object sender, MouseEventArgs e)
    method OnIndexListBoxSelectionChanged (line 1005) | private void OnIndexListBoxSelectionChanged(object sender, SelectionCh...
    method GetContainerForItemOverride (line 1013) | protected override DependencyObject GetContainerForItemOverride()
    method IsItemItsOwnContainerOverride (line 1018) | protected override bool IsItemItsOwnContainerOverride(object item)
    method OnItemsChanged (line 1023) | protected override void OnItemsChanged(System.Collections.Specialized....
    method OnKeyDown (line 1029) | protected override void OnKeyDown(KeyEventArgs e)
    method EnsureFocusVisual (line 1052) | private void EnsureFocusVisual()
    method OnMouseDown (line 1064) | protected override void OnMouseDown(MouseButtonEventArgs e)
    method MonitorHorizontalWheel (line 1070) | private void MonitorHorizontalWheel()
    method Hook (line 1076) | private IntPtr Hook(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam...
    method OnMouseWheel (line 1103) | protected override void OnMouseWheel(MouseWheelEventArgs e)
    method HandleWheelChange (line 1125) | private void HandleWheelChange(int delta)
    method FocusWithNoVisuals (line 1158) | private void FocusWithNoVisuals()
    method OnSelectionChanged (line 1164) | protected override void OnSelectionChanged(SelectionChangedEventArgs e)
    method PrepareContainerForItemOverride (line 1180) | protected override void PrepareContainerForItemOverride(DependencyObje...
    method ApplyToNavigationButtons (line 1197) | private void ApplyToNavigationButtons(Action<Button> prevButtonApply, ...
    method ChangeBannerText (line 1232) | private void ChangeBannerText(object value = null)
    method ComputeTransition (line 1286) | private void ComputeTransition(int fromIndex, int toIndex)
    method DetectControlButtonsStatus (line 1309) | private void DetectControlButtonsStatus(Visibility activeButtonsVisibi...
    method FlipViewLoaded (line 1322) | private void FlipViewLoaded(object sender, RoutedEventArgs e)
    method FlipViewUnloaded (line 1355) | private void FlipViewUnloaded(object sender, RoutedEventArgs e)
    method OnPropertyChanged (line 1367) | protected override void OnPropertyChanged(DependencyPropertyChangedEve...
    method HandleVisibilityChanged (line 1374) | private void HandleVisibilityChanged(DependencyPropertyChangedEventArg...
    method HandleIsEnabledChanged (line 1390) | private void HandleIsEnabledChanged(DependencyPropertyChangedEventArgs e)
    method GetNavigationButtons (line 1413) | private void GetNavigationButtons(out Button prevButton, out Button ne...
    method HideBanner (line 1429) | private void HideBanner()
    method NextButtonClick (line 1445) | private void NextButtonClick(object sender, RoutedEventArgs e)
    method PrevButtonClick (line 1450) | private void PrevButtonClick(object sender, RoutedEventArgs e)
    method ShowBanner (line 1455) | private void ShowBanner()
    method EnsureButtonsFadeOutTimer (line 1464) | private void EnsureButtonsFadeOutTimer()
    method ResetButtonsFadeOutTimer (line 1478) | private void ResetButtonsFadeOutTimer()
    method HideButtonsImmediately (line 1494) | private void HideButtonsImmediately()
    method UpdateVisualState (line 1511) | private void UpdateVisualState(bool useTransitions = false)
    method ButtonsFadeOutTimerTickHandler (line 1548) | private void ButtonsFadeOutTimerTickHandler(object sender, EventArgs e)
    method OnMouseEnter (line 1553) | protected override void OnMouseEnter(MouseEventArgs e)
    method OnMouseMove (line 1567) | protected override void OnMouseMove(MouseEventArgs e)
    method OnLostMouseCapture (line 1577) | protected override void OnLostMouseCapture(MouseEventArgs e)
    method OnGotFocus (line 1588) | protected override void OnGotFocus(RoutedEventArgs e)
    method OnGotKeyboardFocus (line 1594) | protected override void OnGotKeyboardFocus(KeyboardFocusChangedEventAr...
    method OnLostFocus (line 1602) | protected override void OnLostFocus(RoutedEventArgs e)
  class DoubleValueHolder (line 1610) | public class DoubleValueHolder : DependencyObject
  class MultiplyConverter (line 1640) | public class MultiplyConverter : IMultiValueConverter
    method Convert (line 1642) | public object Convert(object[] values, Type targetType, object paramet...
    method ConvertBack (line 1662) | public object[] ConvertBack(object value, Type[] targetTypes, object p...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/FlipView/FlipViewItem.cs
  class FlipViewItem (line 14) | public class FlipViewItem : ContentControl
    method FlipViewItem (line 52) | static FlipViewItem()
    method OnApplyTemplate (line 58) | public override void OnApplyTemplate()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/ContextFlyoutService.cs
  class ContextFlyoutService (line 7) | public static class ContextFlyoutService
    method GetContextFlyout (line 18) | public static FlyoutBase GetContextFlyout(FrameworkElement element)
    method SetContextFlyout (line 23) | public static void SetContextFlyout(FrameworkElement element, FlyoutBa...
    method OnContextFlyoutChanged (line 28) | private static void OnContextFlyoutChanged(DependencyObject d, Depende...
    method OnContextMenuOpening (line 47) | private static void OnContextMenuOpening(object sender, ContextMenuEve...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/EventRevokers.cs
  class FlyoutBaseClosingRevoker (line 5) | internal class FlyoutBaseClosingRevoker : EventRevoker<FlyoutBase, Typed...
    method FlyoutBaseClosingRevoker (line 7) | public FlyoutBaseClosingRevoker(FlyoutBase source, TypedEventHandler<F...
    method AddHandler (line 11) | protected override void AddHandler(FlyoutBase source, TypedEventHandle...
    method RemoveHandler (line 16) | protected override void RemoveHandler(FlyoutBase source, TypedEventHan...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/Flyout.cs
  class Flyout (line 14) | [ContentProperty(nameof(Content))]
    method Flyout (line 28) | public Flyout()
    method CreatePresenter (line 69) | protected override Control CreatePresenter()
    method OnOpened (line 79) | internal override void OnOpened()
    method OnClosed (line 89) | internal override void OnClosed()
    method PlayOpenAnimation (line 99) | private void PlayOpenAnimation()
    method EnsureOpeningStoryboard (line 125) | private void EnsureOpeningStoryboard(Control presenter)
    method GetAnimateFrom (line 178) | private AnimateFrom GetAnimateFrom()
    method UpdateFromOffsetKeyFrames (line 204) | private void UpdateFromOffsetKeyFrames(AnimateFrom animateFrom)
    method TryGetPopupOffset (line 231) | private bool TryGetPopupOffset(out Point offset)
    type AnimateFrom (line 249) | private enum AnimateFrom

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutBase.cs
  class FlyoutBase (line 18) | public abstract class FlyoutBase : DependencyObject
    method FlyoutBase (line 20) | protected FlyoutBase()
    method OnAreOpenCloseAnimationsEnabledChanged (line 56) | private static void OnAreOpenCloseAnimationsEnabledChanged(DependencyO...
    method OnAreOpenCloseAnimationsEnabledChanged (line 61) | internal virtual void OnAreOpenCloseAnimationsEnabledChanged(Dependenc...
    method OnIsOpenChanged (line 86) | private static void OnIsOpenChanged(DependencyObject d, DependencyProp...
    method OnIsOpenChanged (line 91) | internal virtual void OnIsOpenChanged()
    method UpdateIsOpen (line 116) | internal virtual void UpdateIsOpen()
    method GetAttachedFlyout (line 148) | public static FlyoutBase GetAttachedFlyout(FrameworkElement element)
    method SetAttachedFlyout (line 153) | public static void SetAttachedFlyout(FrameworkElement element, FlyoutB...
    method ShowAttachedFlyout (line 158) | public static void ShowAttachedFlyout(FrameworkElement flyoutOwner)
    method ShowAt (line 180) | public void ShowAt(FrameworkElement placementTarget)
    method Hide (line 190) | public void Hide()
    method CreatePresenter (line 196) | protected abstract Control CreatePresenter();
    method ShowAsContextFlyout (line 198) | internal void ShowAsContextFlyout(FrameworkElement placementTarget)
    method ShowAtCore (line 208) | internal virtual void ShowAtCore(FrameworkElement placementTarget, boo...
    method HideCore (line 236) | internal virtual void HideCore()
    method OnOpening (line 244) | internal virtual void OnOpening()
    method OnOpened (line 249) | internal virtual void OnOpened()
    method OnClosed (line 254) | internal virtual void OnClosed()
    method BindPlacement (line 266) | internal void BindPlacement(Control presenter)
    method EnsurePresenter (line 278) | private void EnsurePresenter()
    method EnsurePopup (line 287) | private void EnsurePopup()
    method PreparePopup (line 307) | private void PreparePopup(FrameworkElement placementTarget, bool showA...
    method UpdatePopupAnimation (line 393) | private void UpdatePopupAnimation()
    method GetPlacementRectangle (line 402) | internal Rect GetPlacementRectangle(UIElement target)
    method OnPopupOpened (line 438) | private void OnPopupOpened(object sender, EventArgs e)
    method OnPopupClosing (line 443) | private void OnPopupClosing(object sender, EventArgs e)
    method OnPopupClosed (line 449) | private void OnPopupClosed(object sender, EventArgs e)
    method OnPopupIsOpenChanged (line 467) | private void OnPopupIsOpenChanged(object sender, EventArgs e)
    method PositionPopup (line 472) | private CustomPopupPlacement[] PositionPopup(Size popupSize, Size targ...
    method PositionPopup (line 477) | internal CustomPopupPlacement[] PositionPopup(Size popupSize, Size tar...
    method CancelAsyncShow (line 482) | private void CancelAsyncShow()
    class FullPlacementWidthConverter (line 508) | private class FullPlacementWidthConverter : IMultiValueConverter
      method Convert (line 510) | public object Convert(object[] values, Type targetType, object param...
      method ConvertBack (line 517) | public object[] ConvertBack(object value, Type[] targetTypes, object...
    class FullPlacementHeightConverter (line 523) | private class FullPlacementHeightConverter : IMultiValueConverter
      method Convert (line 525) | public object Convert(object[] values, Type targetType, object param...
      method ConvertBack (line 532) | public object[] ConvertBack(object value, Type[] targetTypes, object...
    class PlacementConverter (line 538) | private class PlacementConverter : IValueConverter
      method Convert (line 540) | public object Convert(object value, Type targetType, object paramete...
      method ConvertBack (line 545) | public object ConvertBack(object value, Type targetType, object para...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutBaseClosingEventArgs.cs
  class FlyoutBaseClosingEventArgs (line 5) | internal sealed class FlyoutBaseClosingEventArgs : EventArgs
    method FlyoutBaseClosingEventArgs (line 7) | internal FlyoutBaseClosingEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutPlacementMode.cs
  type FlyoutPlacementMode (line 3) | public enum FlyoutPlacementMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutPresenter.cs
  class FlyoutPresenter (line 12) | public class FlyoutPresenter : ContentControl
    method FlyoutPresenter (line 14) | static FlyoutPresenter()
    method FlyoutPresenter (line 19) | public FlyoutPresenter()
    method OnKeyDown (line 53) | protected override void OnKeyDown(KeyEventArgs e)
    method OnDpiChanged (line 68) | protected override void OnDpiChanged(DpiScale oldDpi, DpiScale newDpi)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutService.cs
  class FlyoutService (line 11) | public static class FlyoutService
    method GetFlyout (line 20) | public static FlyoutBase GetFlyout(Button button)
    method SetFlyout (line 25) | public static void SetFlyout(Button button, FlyoutBase value)
    method OnFlyoutChanged (line 30) | private static void OnFlyoutChanged(DependencyObject d, DependencyProp...
    method Button_MouseRightButtonUp (line 67) | private static void Button_MouseRightButtonUp(object sender, System.Wi...
    method OnButtonClick (line 110) | private static void OnButtonClick(object sender, RoutedEventArgs e)
    method ButtonFlyoutOpening (line 115) | private static void ButtonFlyoutOpening(object sender, FlyoutOpeningMo...
    method ButtonFlyoutOpening (line 126) | private static void ButtonFlyoutOpening(Button button)
    method GetFlyoutOpeningMode (line 145) | public static FlyoutOpeningMode GetFlyoutOpeningMode(Button button)
    method SetFlyoutOpeningMode (line 150) | public static void SetFlyoutOpeningMode(Button button, FlyoutOpeningMo...
  type FlyoutOpeningMode (line 174) | public enum FlyoutOpeningMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/Flyout/FlyoutShowMode.cs
  type FlyoutShowMode (line 3) | public enum FlyoutShowMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/HyperlinkButton/HyperlinkButton.cs
  class HyperlinkButton (line 14) | public class HyperlinkButton : ButtonBase
    method HyperlinkButton (line 16) | static HyperlinkButton()
    method HyperlinkButton (line 31) | public HyperlinkButton()
    method OnNavigateUriChanged (line 62) | private static void OnNavigateUriChanged(DependencyObject d, Dependenc...
    method OnTargetNameChanged (line 78) | private static void OnTargetNameChanged(DependencyObject d, Dependency...
    method OnCreateAutomationPeer (line 101) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnClick (line 106) | protected override void OnClick()
    method AutomationButtonBaseClick (line 122) | internal void AutomationButtonBaseClick()
    method OnRequestNavigate (line 127) | private void OnRequestNavigate(object sender, RequestNavigateEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/HyperlinkButton/HyperlinkButtonAutomationPeer.cs
  class HyperlinkButtonAutomationPeer (line 12) | public class HyperlinkButtonAutomationPeer : ButtonBaseAutomationPeer, I...
    method HyperlinkButtonAutomationPeer (line 14) | public HyperlinkButtonAutomationPeer(HyperlinkButton owner)
    method GetPattern (line 18) | public override object GetPattern(PatternInterface patternInterface)
    method GetAutomationControlTypeCore (line 30) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetClassNameCore (line 35) | protected override string GetClassNameCore()
    method IsControlElementCore (line 40) | protected override bool IsControlElementCore()
    method Invoke (line 45) | void IInvokeProvider.Invoke()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBadge/InfoBadge.cs
  class InfoBadge (line 20) | public class InfoBadge : Control
    method InfoBadge (line 22) | static InfoBadge()
    method InfoBadge (line 27) | public InfoBadge()
    method OnIconSourcePropertyChanged (line 49) | private static void OnIconSourcePropertyChanged(DependencyObject sende...
    method OnValuePropertyChanged (line 90) | private static void OnValuePropertyChanged(DependencyObject sender, De...
    method OnApplyTemplate (line 120) | public override void OnApplyTemplate()
    method MeasureOverride (line 126) | protected override Size MeasureOverride(Size availableSize)
    method OnDisplayKindPropertiesChanged (line 156) | void OnDisplayKindPropertiesChanged()
    method OnSizeChanged (line 185) | void OnSizeChanged(object sender, SizeChangedEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBadge/InfoBadgeTemplateSettings.cs
  class InfoBadgeTemplateSettings (line 11) | public class InfoBadgeTemplateSettings : DependencyObject
    method InfoBadgeTemplateSettings (line 13) | internal InfoBadgeTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/Enums.cs
  type InfoBarSeverity (line 12) | public enum InfoBarSeverity
  type InfoBarCloseReason (line 38) | public enum InfoBarCloseReason

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBar.cs
  class InfoBar (line 24) | public partial class InfoBar : Control, IControlProtected
    method InfoBar (line 40) | static InfoBar()
    method InfoBar (line 45) | public InfoBar()
    method OnCreateAutomationPeer (line 52) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnApplyTemplate (line 57) | public override void OnApplyTemplate()
    method OnCloseButtonClick (line 102) | void OnCloseButtonClick(object sender, RoutedEventArgs args)
    method RaiseClosingEvent (line 109) | void RaiseClosingEvent()
    method RaiseClosedEvent (line 129) | void RaiseClosedEvent()
    method OnIsOpenPropertyChanged (line 136) | void OnIsOpenPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnSeverityPropertyChanged (line 151) | void OnSeverityPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnIconSourcePropertyChanged (line 156) | void OnIconSourcePropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnIsIconVisiblePropertyChanged (line 162) | void OnIsIconVisiblePropertyChanged(DependencyPropertyChangedEventArgs...
    method OnIsClosablePropertyChanged (line 167) | void OnIsClosablePropertyChanged(DependencyPropertyChangedEventArgs args)
    method UpdateVisibility (line 172) | public void UpdateVisibility(bool notify = false, bool force = false)
    method UpdateSeverity (line 216) | public void UpdateSeverity()
    method UpdateIcon (line 242) | public void UpdateIcon()
    method UpdateIconVisibility (line 257) | public void UpdateIconVisibility()
    method UpdateCloseButton (line 262) | public void UpdateCloseButton()
    method UpdateForeground (line 267) | public void UpdateForeground()
    method GetSeverityLevelResourceName (line 273) | public string GetSeverityLevelResourceName(InfoBarSeverity severity)
    method GetIconSeverityLevelResourceName (line 287) | public string GetIconSeverityLevelResourceName(InfoBarSeverity severity)
    method GetTemplateChild (line 301) | DependencyObject IControlProtected.GetTemplateChild(string childName)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBar.properties.cs
  class InfoBar (line 16) | public partial class InfoBar
    method OnIconSourcePropertyChanged (line 135) | private static void OnIconSourcePropertyChanged(DependencyObject sende...
    method OnIsClosablePropertyChanged (line 157) | private static void OnIsClosablePropertyChanged(DependencyObject sende...
    method OnIsIconVisiblePropertyChanged (line 179) | private static void OnIsIconVisiblePropertyChanged(DependencyObject se...
    method OnIsOpenPropertyChanged (line 201) | private static void OnIsOpenPropertyChanged(DependencyObject sender, D...
    method OnSeverityPropertyChanged (line 240) | private static void OnSeverityPropertyChanged(DependencyObject sender,...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBarAutomationPeer.cs
  class InfoBarAutomationPeer (line 12) | internal class InfoBarAutomationPeer : FrameworkElementAutomationPeer
    method InfoBarAutomationPeer (line 14) | public InfoBarAutomationPeer(InfoBar owner) :
    method GetAutomationControlTypeCore (line 19) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetClassNameCore (line 24) | protected override string GetClassNameCore()
    method RaiseOpenedEvent (line 29) | public void RaiseOpenedEvent(InfoBarSeverity severity, string displayS...
    method RaiseClosedEvent (line 37) | public void RaiseClosedEvent(InfoBarSeverity severity, string displayS...
    method GetInfoBar (line 59) | public InfoBar GetInfoBar()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBarClosedEventArgs.cs
  class InfoBarClosedEventArgs (line 9) | public class InfoBarClosedEventArgs : EventArgs

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBarClosingEventArgs.cs
  class InfoBarClosingEventArgs (line 9) | public class InfoBarClosingEventArgs : EventArgs

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBarPanel.cs
  class InfoBarPanel (line 15) | public class InfoBarPanel : Panel
    method InfoBarPanel (line 19) | public InfoBarPanel()
    method GetHorizontalOrientationMargin (line 57) | public static Thickness GetHorizontalOrientationMargin(DependencyObjec...
    method SetHorizontalOrientationMargin (line 67) | public static void SetHorizontalOrientationMargin(DependencyObject con...
    method GetVerticalOrientationMargin (line 115) | public static Thickness GetVerticalOrientationMargin(DependencyObject ...
    method SetVerticalOrientationMargin (line 125) | public static void SetVerticalOrientationMargin(DependencyObject contr...
    method MeasureOverride (line 156) | protected override Size MeasureOverride(Size availableSize)
    method ArrangeOverride (line 233) | protected override Size ArrangeOverride(Size finalSize)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InfoBar/InfoBarTemplateSettings.cs
  class InfoBarTemplateSettings (line 10) | public class InfoBarTemplateSettings : DependencyObject
    method InfoBarTemplateSettings (line 12) | internal InfoBarTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InputBox/InputBox.cs
  class InputBox (line 7) | public static class InputBox
    method ShowAsync (line 9) | public static async Task<string> ShowAsync(object title, object prompt...
    method ShowAsync (line 24) | public static async Task<string> ShowAsync(Window owner, object title,...
    method ShowAsync (line 39) | public static async Task<string> ShowAsync(ContentDialogPlacement plac...
    method BuildDialog (line 54) | private static ContentDialog BuildDialog(object title, object prompt, ...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/InputBox/InputBoxContent.xaml.cs
  class InputBoxContent (line 7) | internal partial class InputBoxContent : UserControl
    method InputBoxContent (line 9) | public InputBoxContent()
    method InputBoxContent_Loaded (line 16) | private void InputBoxContent_Loaded(object sender, RoutedEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/LayoutPanel/LayoutPanel.cs
  class LayoutPanel (line 11) | public class LayoutPanel : Panel
    method LayoutPanel (line 13) | public LayoutPanel()
    method OnLayoutChanged (line 32) | private static void OnLayoutChanged(DependencyObject d, DependencyProp...
    method MeasureOverride (line 60) | protected override Size MeasureOverride(Size availableSize)
    method ArrangeOverride (line 99) | protected override Size ArrangeOverride(Size finalSize)
    method OnLayoutChanged (line 155) | private void OnLayoutChanged(Layout oldValue, Layout newValue)
    method InvalidateMeasureForLayout (line 181) | private void InvalidateMeasureForLayout(Layout sender, object args)
    method InvalidateArrangeForLayout (line 186) | private void InvalidateArrangeForLayout(Layout sender, object args)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/LayoutPanel/LayoutPanelLayoutContext.cs
  class LayoutPanelLayoutContext (line 12) | internal class LayoutPanelLayoutContext : NonVirtualizingLayoutContext
    method LayoutPanelLayoutContext (line 14) | public LayoutPanelLayoutContext(LayoutPanel owner)
    method GetOwner (line 27) | private LayoutPanel GetOwner()
    class UIElementCollectionView (line 35) | private class UIElementCollectionView : IReadOnlyList<UIElement>
      method UIElementCollectionView (line 37) | public UIElementCollectionView(UIElementCollection collection)
      method GetEnumerator (line 46) | public IEnumerator<UIElement> GetEnumerator()
      method GetEnumerator (line 54) | IEnumerator IEnumerable.GetEnumerator()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/GridView.cs
  class GridView (line 8) | public class GridView : ListViewBase
    method GridView (line 10) | static GridView()
    method GridView (line 15) | public GridView()
    method IsItemItsOwnContainerOverride (line 19) | protected override bool IsItemItsOwnContainerOverride(object item)
    method GetContainerForItemOverride (line 24) | protected override DependencyObject GetContainerForItemOverride()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/GridViewHeaderItem.cs
  class GridViewHeaderItem (line 5) | public class GridViewHeaderItem : ListViewBaseHeaderItem
    method GridViewHeaderItem (line 7) | static GridViewHeaderItem()
    method GridViewHeaderItem (line 12) | public GridViewHeaderItem()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/GridViewItem.cs
  class GridViewItem (line 10) | public class GridViewItem : ListViewBaseItem
    method GridViewItem (line 12) | static GridViewItem()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/ItemClickEventHandler.cs
  class ItemClickEventArgs (line 7) | public sealed class ItemClickEventArgs : RoutedEventArgs
    method ItemClickEventArgs (line 9) | public ItemClickEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/ListView.cs
  class ListView (line 6) | public class ListView : ListViewBase
    method ListView (line 8) | static ListView()
    method ListView (line 13) | public ListView()
    method IsItemItsOwnContainerOverride (line 17) | protected override bool IsItemItsOwnContainerOverride(object item)
    method GetContainerForItemOverride (line 22) | protected override DependencyObject GetContainerForItemOverride()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/ListViewBase.cs
  class ListViewBase (line 11) | public class ListViewBase : ListBox
    method ListViewBase (line 13) | static ListViewBase()
    method ListViewBase (line 18) | protected ListViewBase()
    method OnIsSelectionEnabledChanged (line 55) | private static void OnIsSelectionEnabledChanged(DependencyObject d, De...
    method OnIsMultiSelectCheckBoxEnabledChanged (line 85) | private static void OnIsMultiSelectCheckBoxEnabledChanged(DependencyOb...
    method PrepareContainerForItemOverride (line 245) | protected override void PrepareContainerForItemOverride(DependencyObje...
    method ClearContainerForItemOverride (line 255) | protected override void ClearContainerForItemOverride(DependencyObject...
    method OnSelectionChanged (line 265) | protected override void OnSelectionChanged(SelectionChangedEventArgs e)
    method NotifyListItemClicked (line 280) | internal void NotifyListItemClicked(ListViewBaseItem item)
    method OnSelectionModePropertyChanged (line 289) | private static void OnSelectionModePropertyChanged(DependencyObject d,...
    method UpdateMultiSelectEnabled (line 294) | private void UpdateMultiSelectEnabled()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/ListViewBaseItem.cs
  class ListViewBaseItem (line 10) | public class ListViewBaseItem : ListBoxItem
    method ListViewBaseItem (line 12) | protected ListViewBaseItem()
    method OnApplyTemplate (line 55) | public override void OnApplyTemplate()
    method OnMouseLeftButtonDown (line 62) | protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
    method OnMouseLeftButtonUp (line 71) | protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
    method OnMouseLeave (line 81) | protected override void OnMouseLeave(MouseEventArgs e)
    method OnKeyDown (line 90) | protected override void OnKeyDown(KeyEventArgs e)
    method SubscribeToMultiSelectEnabledChanged (line 101) | internal void SubscribeToMultiSelectEnabledChanged(ListViewBase parent)
    method UnsubscribeFromMultiSelectEnabledChanged (line 107) | internal void UnsubscribeFromMultiSelectEnabledChanged(ListViewBase pa...
    method OnMultiSelectEnabledChanged (line 113) | private void OnMultiSelectEnabledChanged(object sender, EventArgs e)
    method UpdateMultiSelectStates (line 118) | private void UpdateMultiSelectStates(ListViewBase parent, bool useTran...
    method HandleMouseUp (line 127) | private void HandleMouseUp(MouseButtonEventArgs e)
    method OnClick (line 140) | private void OnClick()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ListView/ListViewItem.cs
  class ListViewItem (line 10) | public class ListViewItem : ListViewBaseItem
    method ListViewItem (line 12) | static ListViewItem()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MediaPlayerElement/MediaElementEx.cs
  class MediaElementEx (line 15) | public class MediaElementEx : MediaElement, INotifyPropertyChanged
    method RaisePropertyChangedEvent (line 23) | private void RaisePropertyChangedEvent([System.Runtime.CompilerService...
    method MediaElementEx (line 28) | public MediaElementEx()
    method timer_Tick (line 255) | private void timer_Tick(object sender, EventArgs e)
    method StartTimer (line 265) | public void StartTimer()
    method Play (line 274) | public new void Play()
    method Pause (line 286) | public new void Pause()
    method Stop (line 298) | public new void Stop()
    method Close (line 310) | public new void Close()
    method UpdateAllProperty (line 322) | public void UpdateAllProperty()
  type MediaState (line 336) | public enum MediaState

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MediaPlayerElement/MediaPlayerElement.cs
  class MediaPlayerElement (line 13) | public class MediaPlayerElement : Control
    method MediaPlayerElement (line 15) | static MediaPlayerElement()
    method OnMediaPlayerPropertyChanged (line 89) | private static void OnMediaPlayerPropertyChanged(DependencyObject d, D...
    method OnTransportControlsPropertyChanged (line 189) | private static void OnTransportControlsPropertyChanged(DependencyObjec...
    method OnApplyTemplate (line 230) | public override void OnApplyTemplate()
    method UpdateMediaPlayer (line 249) | private void UpdateMediaPlayer()
    method UpdateTransportControls (line 285) | private void UpdateTransportControls()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MediaPlayerElement/MediaTransportControls.cs
  class MediaTransportControls (line 29) | public partial class MediaTransportControls : Control
    method MediaTransportControls (line 67) | static MediaTransportControls()
    method MediaTransportControls (line 72) | public MediaTransportControls()
    method timer_Tick (line 78) | private void timer_Tick(object sender, EventArgs e)
    method UpdateTimer (line 87) | private void UpdateTimer()
    method OnSizeChanged (line 101) | private void OnSizeChanged(object sender, SizeChangedEventArgs e)
    method OnApplyTemplate (line 106) | public override void OnApplyTemplate()
    method Mute_Click (line 201) | private void Mute_Click(object sender, RoutedEventArgs e)
    method Stop_Click (line 211) | private void Stop_Click(object sender, RoutedEventArgs e)
    method SkipBackward_Click (line 220) | private void SkipBackward_Click(object sender, RoutedEventArgs e)
    method Rewind_Click (line 231) | private void Rewind_Click(object sender, RoutedEventArgs e)
    method PlayPause_Click (line 242) | private void PlayPause_Click(object sender, RoutedEventArgs e)
    method FastForward_Click (line 262) | private void FastForward_Click(object sender, RoutedEventArgs e)
    method SkipForward_Click (line 273) | private void SkipForward_Click(object sender, RoutedEventArgs e)
    method PlaybackRate_Click (line 284) | private void PlaybackRate_Click(object sender, RoutedEventArgs e)
    method Zoom_Click (line 294) | private void Zoom_Click(object sender, RoutedEventArgs e)
    method CompactOverlay_Click (line 318) | private void CompactOverlay_Click(object sender, RoutedEventArgs e)
    method UpdateState (line 323) | private void UpdateState(bool useTransitions = false)
    method UpdateTarget (line 337) | private void UpdateTarget()
    method UpdateLayouts (line 383) | public void UpdateLayouts()
    method Hide (line 483) | public void Hide() => VisualStateManager.GoToState(this, ControlPanelF...
    method Show (line 488) | public void Show() => VisualStateManager.GoToState(this, ControlPanelF...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MediaPlayerElement/MediaTransportControls.properties.cs
  class MediaTransportControls (line 7) | public partial class MediaTransportControls
    method OnIsCompactPropertyChanged (line 24) | private static void OnIsCompactPropertyChanged(DependencyObject d, Dep...
    method OnTargetPropertyChanged (line 509) | private static void OnTargetPropertyChanged(DependencyObject d, Depend...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MediaPlayerElement/MediaTransportControlsTemplateSettings.cs
  class MediaTransportControlsTemplateSettings (line 11) | public class MediaTransportControlsTemplateSettings : DependencyObject
    method MediaTransportControlsTemplateSettings (line 13) | public MediaTransportControlsTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MenuFlyout/MenuFlyout.cs
  class MenuFlyout (line 10) | [ContentProperty(nameof(Items))]
    method MenuFlyout (line 13) | public MenuFlyout()
    method OnMenuFlyoutPresenterStyleChanged (line 41) | private static void OnMenuFlyoutPresenterStyleChanged(DependencyObject...
    method OnMenuFlyoutPresenterStyleChanged (line 46) | private void OnMenuFlyoutPresenterStyleChanged(DependencyPropertyChang...
    method CreatePresenter (line 56) | protected override Control CreatePresenter()
    method ShowAtCore (line 61) | internal override void ShowAtCore(FrameworkElement placementTarget, bo...
    method HideCore (line 73) | internal override void HideCore()
    method OnIsOpenChanged (line 81) | internal override void OnIsOpenChanged()
    method UpdateIsOpen (line 85) | internal override void UpdateIsOpen()
    method OnAreOpenCloseAnimationsEnabledChanged (line 90) | internal override void OnAreOpenCloseAnimationsEnabledChanged(Dependen...
    method Show (line 95) | private void Show(FrameworkElement placementTarget, PlacementMode plac...
    method PositionPopup (line 130) | private CustomPopupPlacement[] PositionPopup(Size popupSize, Size targ...
    method EnsurePresenter (line 135) | private void EnsurePresenter()
    method OnPresenterOpened (line 157) | private void OnPresenterOpened(object sender, RoutedEventArgs e)
    method OnPresenterClosed (line 162) | private void OnPresenterClosed(object sender, RoutedEventArgs e)
    method OnPresenterIsOpenChanged (line 175) | private void OnPresenterIsOpenChanged(object sender, DependencyPropert...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/MenuFlyout/MenuFlyoutPresenter.cs
  class MenuFlyoutPresenter (line 12) | public class MenuFlyoutPresenter : ContextMenu
    method MenuFlyoutPresenter (line 14) | static MenuFlyoutPresenter()
    method MenuFlyoutPresenter (line 21) | public MenuFlyoutPresenter()
    method OnVisualParentChanged (line 57) | protected override void OnVisualParentChanged(DependencyObject oldParent)
    method SetOwningFlyout (line 67) | internal void SetOwningFlyout(MenuFlyout owningFlyout)
    method UpdatePopupAnimation (line 72) | internal void UpdatePopupAnimation()
    method OnIsOpenChanged (line 87) | private static void OnIsOpenChanged(DependencyObject d, DependencyProp...
    method OnIsOpenChanged (line 92) | private void OnIsOpenChanged(DependencyPropertyChangedEventArgs e)
    method HookupParentPopup (line 105) | private void HookupParentPopup()
    method HandlePopupMouseButtonEvent (line 122) | private void HandlePopupMouseButtonEvent(object sender, MouseButtonEve...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/Enums.cs
  type NavigationViewDisplayMode (line 6) | public enum NavigationViewDisplayMode
  type NavigationViewBackButtonVisible (line 13) | public enum NavigationViewBackButtonVisible
  type NavigationViewPaneDisplayMode (line 20) | public enum NavigationViewPaneDisplayMode
  type NavigationViewSelectionFollowsFocus (line 29) | public enum NavigationViewSelectionFollowsFocus
  type NavigationViewShoulderNavigationEnabled (line 35) | public enum NavigationViewShoulderNavigationEnabled
  type NavigationViewOverflowLabelMode (line 42) | public enum NavigationViewOverflowLabelMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationView.cs
  type TopNavigationViewLayoutState (line 32) | enum TopNavigationViewLayoutState
  type NavigationRecommendedTransitionDirection (line 38) | enum NavigationRecommendedTransitionDirection
  class NavigationView (line 46) | public partial class NavigationView : ContentControl, IControlProtected
    method OnCreateAutomationPeer (line 125) | protected override AutomationPeer OnCreateAutomationPeer()
    method UnhookEventsAndClearFields (line 130) | void UnhookEventsAndClearFields(bool isFromDestructor = false)
    method NavigationView (line 222) | static NavigationView()
    method NavigationView (line 227) | public NavigationView()
    method OnSelectionModelChildrenRequested (line 272) | void OnSelectionModelChildrenRequested(SelectionModel selectionModel, ...
    method OnFooterItemsSourceCollectionChanged (line 289) | void OnFooterItemsSourceCollectionChanged(object sender, object e)
    method OnOverflowItemsSourceCollectionChanged (line 297) | void OnOverflowItemsSourceCollectionChanged(object sender, object e)
    method OnSelectionModelSelectionChanged (line 305) | void OnSelectionModelSelectionChanged(SelectionModel selectionModel, S...
    method SelectandMoveOverflowItem (line 370) | void SelectandMoveOverflowItem(object selectedItem, IndexPath selected...
    method CloseFlyoutIfRequired (line 394) | void CloseFlyoutIfRequired(NavigationViewItem selectedItem)
    method OnApplyTemplate (line 430) | public override void OnApplyTemplate()
    method UpdateRepeaterItemsSource (line 768) | void UpdateRepeaterItemsSource(bool forceSelectionModelUpdate)
    method UpdateLeftRepeaterItemSource (line 812) | void UpdateLeftRepeaterItemSource(object items)
    method UpdateTopNavRepeatersItemSource (line 819) | void UpdateTopNavRepeatersItemSource(object items)
    method UpdateTopNavPrimaryRepeaterItemsSource (line 829) | void UpdateTopNavPrimaryRepeaterItemsSource(object items)
    method UpdateTopNavOverflowRepeaterItemsSource (line 841) | void UpdateTopNavOverflowRepeaterItemsSource(object items)
    method UpdateItemsRepeaterItemsSource (line 869) | void UpdateItemsRepeaterItemsSource(ItemsRepeater ir,
    method UpdateFooterRepeaterItemsSource (line 878) | void UpdateFooterRepeaterItemsSource(bool sourceCollectionReset, bool ...
    method OnFlyoutClosing (line 975) | void OnFlyoutClosing(object sender, FlyoutBaseClosingEventArgs args)
    method OnNavigationViewItemIsSelectedPropertyChanged (line 1000) | void OnNavigationViewItemIsSelectedPropertyChanged(DependencyObject se...
    method OnNavigationViewItemExpandedPropertyChanged (line 1031) | void OnNavigationViewItemExpandedPropertyChanged(DependencyObject send...
    method RaiseItemInvokedForNavigationViewItem (line 1049) | void RaiseItemInvokedForNavigationViewItem(NavigationViewItem nvi)
    method OnNavigationViewItemInvoked (line 1095) | internal void OnNavigationViewItemInvoked(NavigationViewItem nvi)
    method IsRootItemsRepeater (line 1128) | bool IsRootItemsRepeater(DependencyObject element)
    method IsRootGridOfFlyout (line 1141) | bool IsRootGridOfFlyout(DependencyObject element)
    method GetParentRootItemsRepeaterForContainer (line 1150) | ItemsRepeater GetParentRootItemsRepeaterForContainer(NavigationViewIte...
    method GetParentItemsRepeaterForContainer (line 1167) | internal ItemsRepeater GetParentItemsRepeaterForContainer(NavigationVi...
    method GetParentNavigationViewItemForContainer (line 1179) | NavigationViewItem GetParentNavigationViewItemForContainer(NavigationV...
    method GetIndexPathForContainer (line 1198) | IndexPath GetIndexPathForContainer(NavigationViewItemBase nvib)
    method OnRepeaterElementPrepared (line 1263) | internal void OnRepeaterElementPrepared(ItemsRepeater ir, ItemsRepeate...
    method ApplyCustomMenuItemContainerStyling (line 1340) | void ApplyCustomMenuItemContainerStyling(NavigationViewItemBase nvib, ...
    method OnRepeaterElementClearing (line 1361) | internal void OnRepeaterElementClearing(ItemsRepeater ir, ItemsRepeate...
    method GetNavigationViewItemsFactory (line 1380) | internal NavigationViewItemsFactory GetNavigationViewItemsFactory() { ...
    method CreateAndHookEventsToSettings (line 1383) | void CreateAndHookEventsToSettings()
    method MeasureOverride (line 1414) | protected override Size MeasureOverride(Size availableSize)
    method OnLayoutUpdated (line 1443) | void OnLayoutUpdated(object sender, object e)
    method OnSizeChanged (line 1468) | void OnSizeChanged(object sender, SizeChangedEventArgs args)
    method OnItemsContainerSizeChanged (line 1480) | void OnItemsContainerSizeChanged(object sender, SizeChangedEventArgs e)
    method UpdateOpenPaneWidth (line 1485) | void UpdateOpenPaneWidth(double width)
    method UpdateAdaptiveLayout (line 1497) | void UpdateAdaptiveLayout(double width, bool forceSetDisplayMode = false)
    method UpdatePaneLayout (line 1575) | void UpdatePaneLayout()
    method OnPaneToggleButtonClick (line 1731) | void OnPaneToggleButtonClick(object sender, RoutedEventArgs args)
    method OnPaneSearchButtonClick (line 1745) | void OnPaneSearchButtonClick(object sender, RoutedEventArgs args)
    method OnPaneTitleHolderSizeChanged (line 1759) | void OnPaneTitleHolderSizeChanged(object sender, SizeChangedEventArgs ...
    method OpenPane (line 1764) | void OpenPane()
    method ClosePane (line 1778) | void ClosePane()
    method AttemptClosePaneLightly (line 1794) | bool AttemptClosePaneLightly()
    method OnSplitViewClosedCompactChanged (line 1815) | void OnSplitViewClosedCompactChanged(DependencyObject sender, Dependen...
    method OnSplitViewPaneClosed (line 1824) | void OnSplitViewPaneClosed(DependencyObject sender, object obj)
    method OnSplitViewPaneClosing (line 1829) | void OnSplitViewPaneClosing(DependencyObject sender, SplitViewPaneClos...
    method OnSplitViewPaneOpened (line 1864) | void OnSplitViewPaneOpened(DependencyObject sender, object obj)
    method OnSplitViewPaneOpening (line 1869) | void OnSplitViewPaneOpening(DependencyObject sender, object obj)
    method UpdateIsClosedCompact (line 1880) | void UpdateIsClosedCompact()
    method UpdatePaneButtonsWidths (line 1914) | void UpdatePaneButtonsWidths()
    method OnBackButtonClicked (line 1948) | void OnBackButtonClicked(object sender, RoutedEventArgs args)
    method IsOverlay (line 1954) | bool IsOverlay()
    method IsLightDismissible (line 1966) | bool IsLightDismissible()
    method ShouldShowBackButton (line 1978) | bool ShouldShowBackButton()
    method ShouldShowCloseButton (line 1993) | bool ShouldShowCloseButton()
    method ShouldShowBackOrCloseButton (line 2016) | bool ShouldShowBackOrCloseButton()
    method SetPaneToggleButtonAutomationName (line 2024) | void SetPaneToggleButtonAutomationName()
    method UpdateSettingsItemToolTip (line 2045) | void UpdateSettingsItemToolTip()
    method UpdatePaneTitleFrameworkElementParents (line 2064) | void UpdatePaneTitleFrameworkElementParents()
    method SetPaneTitleFrameworkElementParent (line 2088) | Action SetPaneTitleFrameworkElementParent(ContentControl parent, Frame...
    method AnimateSelectionChangedToItem (line 2112) | void AnimateSelectionChangedToItem(object selectedItem)
    method AnimateSelectionChanged (line 2122) | void AnimateSelectionChanged(object nextItem)
    method PlayIndicatorNonSameLevelAnimations (line 2259) | void PlayIndicatorNonSameLevelAnimations(UIElement indicator, bool isO...
    method PlayIndicatorNonSameLevelTopPrimaryAnimation (line 2287) | void PlayIndicatorNonSameLevelTopPrimaryAnimation(UIElement indicator,...
    method PlayIndicatorAnimations (line 2314) | void PlayIndicatorAnimations(UIElement indicator, double from, double ...
    method PrepareIndicatorForAnimation (line 2401) | void PrepareIndicatorForAnimation(UIElement indicator, Point? centerPo...
    method OnAnimationComplete (line 2431) | void OnAnimationComplete(object sender, EventArgs args)
    method ResetElementAnimationProperties (line 2442) | void ResetElementAnimationProperties(UIElement element, double desired...
    method NavigationViewItemBaseOrSettingsContentFromData (line 2478) | NavigationViewItemBase NavigationViewItemBaseOrSettingsContentFromData...
    method NavigationViewItemOrSettingsContentFromData (line 2483) | NavigationViewItem NavigationViewItemOrSettingsContentFromData(object ...
    method IsSelectionSuppressed (line 2488) | bool IsSelectionSuppressed(object item)
    method ShouldPreserveNavigationViewRS4Behavior (line 2501) | bool ShouldPreserveNavigationViewRS4Behavior()
    method ShouldPreserveNavigationViewRS3Behavior (line 2507) | bool ShouldPreserveNavigationViewRS3Behavior()
    method FindSelectionIndicator (line 2513) | UIElement FindSelectionIndicator(object item)
    method RaiseSelectionChangedEvent (line 2535) | void RaiseSelectionChangedEvent(object nextItem, bool isSettingsItem, ...
    method ChangeSelection (line 2550) | void ChangeSelection(object prevItem, object nextItem)
    method UpdateSelectionModelSelection (line 2641) | void UpdateSelectionModelSelection(IndexPath ip)
    method UpdateIsChildSelected (line 2648) | void UpdateIsChildSelected(IndexPath prevIP, IndexPath nextIP)
    method UpdateIsChildSelectedForIndexPath (line 2661) | void UpdateIsChildSelectedForIndexPath(IndexPath ip, bool isChildSelec...
    method RaiseItemInvoked (line 2688) | void RaiseItemInvoked(object item,
    method SetDisplayMode (line 2728) | void SetDisplayMode(NavigationViewDisplayMode displayMode, bool forceS...
    method GetVisualStateDisplayMode (line 2755) | NavigationViewVisualStateDisplayMode GetVisualStateDisplayMode(Navigat...
    method UpdateVisualStateForDisplayModeGroup (line 2790) | void UpdateVisualStateForDisplayModeGroup(NavigationViewDisplayMode di...
    method OnNavigationViewItemTapped (line 2839) | void OnNavigationViewItemTapped(object sender, TappedRoutedEventArgs a...
    method OnNavigationViewItemKeyDown (line 2849) | void OnNavigationViewItemKeyDown(object sender, KeyEventArgs args)
    method HandleKeyEventForNavigationViewItem (line 2866) | void HandleKeyEventForNavigationViewItem(NavigationViewItem nvi, KeyEv...
    method FocusNextUpItem (line 2896) | void FocusNextUpItem(NavigationViewItem nvi, KeyEventArgs args)
    method FocusNextDownItem (line 2957) | void FocusNextDownItem(NavigationViewItem nvi, KeyEventArgs args)
    method FocusNextRightItem (line 2986) | void FocusNextRightItem(NavigationViewItem nvi, KeyEventArgs args)
    method KeyboardFocusFirstItemFromItem (line 2991) | void KeyboardFocusFirstItemFromItem(NavigationViewItemBase nvib)
    method KeyboardFocusLastItemFromItem (line 3009) | void KeyboardFocusLastItemFromItem(NavigationViewItemBase nvib)
    method OnRepeaterGettingFocus (line 3026) | void OnRepeaterGettingFocus(object sender, GettingFocusEventArgs args)
    method OnNavigationViewItemOnGotFocus (line 3096) | void OnNavigationViewItemOnGotFocus(object sender, RoutedEventArgs e)
    method OnSettingsInvoked (line 3127) | internal void OnSettingsInvoked()
    method OnPreviewKeyDown (line 3136) | protected override void OnPreviewKeyDown(KeyEventArgs e)
    method OnKeyDown (line 3142) | protected override void OnKeyDown(KeyEventArgs e)
    method SelectSelectableItemWithOffset (line 3263) | bool SelectSelectableItemWithOffset(int startIndex, int offset, ItemsR...
    method MenuItemFromContainer (line 3284) | internal object MenuItemFromContainer(DependencyObject container)
    method ContainerFromMenuItem (line 3303) | internal DependencyObject ContainerFromMenuItem(object item)
    method OnTopNavDataSourceChanged (line 3313) | void OnTopNavDataSourceChanged(NotifyCollectionChangedEventArgs args)
    method GetNavigationViewItemCountInPrimaryList (line 3330) | internal int GetNavigationViewItemCountInPrimaryList()
    method GetNavigationViewItemCountInTopNav (line 3335) | internal int GetNavigationViewItemCountInTopNav()
    method GetSplitView (line 3340) | internal SplitView GetSplitView()
    method GetTopDataProvider (line 3345) | internal TopNavigationViewDataProvider GetTopDataProvider() { return m...
    method TopNavigationViewItemContentChanged (line 3347) | internal void TopNavigationViewItemContentChanged()
    method CreateNavigationTransitionInfo (line 3377) | NavigationTransitionInfo CreateNavigationTransitionInfo(NavigationReco...
    method GetRecommendedTransitionDirection (line 3410) | NavigationRecommendedTransitionDirection GetRecommendedTransitionDirec...
    method GetTemplateSettings (line 3438) | NavigationViewTemplateSettings GetTemplateSettings()
    method IsNavigationViewListSingleSelectionFollowsFocus (line 3443) | bool IsNavigationViewListSingleSelectionFollowsFocus()
    method UpdateSingleSelectionFollowsFocusTemplateSetting (line 3448) | void UpdateSingleSelectionFollowsFocusTemplateSetting()
    method OnMenuItemsSourceCollectionChanged (line 3453) | void OnMenuItemsSourceCollectionChanged(object sender, object args)
    method OnSelectedItemPropertyChanged (line 3465) | void OnSelectedItemPropertyChanged(DependencyPropertyChangedEventArgs ...
    method SetSelectedItemAndExpectItemInvokeWhenSelectionChangedIfNotInvokedFromAPI (line 3483) | void SetSelectedItemAndExpectItemInvokeWhenSelectionChangedIfNotInvoke...
    method ChangeSelectStatusForItem (line 3488) | void ChangeSelectStatusForItem(object item, bool selected)
    method IsSettingsItem (line 3520) | bool IsSettingsItem(object item)
    method UnselectPrevItem (line 3533) | void UnselectPrevItem(object prevItem, object nextItem)
    method UndoSelectionAndRevertSelectionTo (line 3553) | void UndoSelectionAndRevertSelectionTo(object prevSelectedItem, object...
    method CloseTopNavigationViewFlyout (line 3578) | void CloseTopNavigationViewFlyout()
    method UpdatePaneOverlayGroup (line 3589) | void UpdatePaneOverlayGroup()
    method UpdateVisualState (line 3605) | void UpdateVisualState(bool useTransitions = false)
    method UpdateVisualStateForOverflowButton (line 3626) | void UpdateVisualStateForOverflowButton()
    method UpdateLeftNavigationOnlyVisualState (line 3634) | void UpdateLeftNavigationOnlyVisualState(bool useTransitions)
    method InvalidateTopNavPrimaryLayout (line 3640) | void InvalidateTopNavPrimaryLayout()
    method MeasureTopNavigationViewDesiredWidth (line 3648) | double MeasureTopNavigationViewDesiredWidth(Size availableSize)
    method MeasureTopNavMenuItemsHostDesiredWidth (line 3653) | double MeasureTopNavMenuItemsHostDesiredWidth(Size availableSize)
    method GetTopNavigationViewActualWidth (line 3658) | double GetTopNavigationViewActualWidth()
    method HasTopNavigationViewItemNotInPrimaryList (line 3665) | bool HasTopNavigationViewItemNotInPrimaryList()
    method ResetAndRearrangeTopNavItems (line 3670) | void ResetAndRearrangeTopNavItems(Size availableSize)
    method HandleTopNavigationMeasureOverride (line 3679) | void HandleTopNavigationMeasureOverride(Size availableSize)
    method HandleTopNavigationMeasureOverrideNormal (line 3697) | void HandleTopNavigationMeasureOverrideNormal(Size availableSize)
    method HandleTopNavigationMeasureOverrideOverflow (line 3706) | void HandleTopNavigationMeasureOverrideOverflow(Size availableSize)
    method ArrangeTopNavItems (line 3729) | void ArrangeTopNavItems(Size availableSize)
    method SetOverflowButtonVisibility (line 3746) | void SetOverflowButtonVisibility(Visibility visibility)
    method SelectOverflowItem (line 3754) | void SelectOverflowItem(object item, IndexPath ip)
    method NeedRearrangeOfTopElementsAfterOverflowSelectionChanged (line 3863) | bool NeedRearrangeOfTopElementsAfterOverflowSelectionChanged(int selec...
    method ShrinkTopNavigationSize (line 3915) | void ShrinkTopNavigationSize(double desiredWidth, Size availableSize)
    method FindMovableItemsRecoverToPrimaryList (line 3948) | List<int> FindMovableItemsRecoverToPrimaryList(double availableWidth, ...
    method FindMovableItemsToBeRemovedFromPrimaryList (line 3990) | List<int> FindMovableItemsToBeRemovedFromPrimaryList(double widthAtLea...
    method FindMovableItemsBeyondAvailableWidth (line 4012) | List<int> FindMovableItemsBeyondAvailableWidth(double availableWidth)
    method KeepAtLeastOneItemInPrimaryList (line 4056) | void KeepAtLeastOneItemInPrimaryList(List<int> itemInPrimaryToBeRemove...
    method GetSelectedItemIndex (line 4071) | int GetSelectedItemIndex()
    method GetPaneToggleButtonWidth (line 4076) | double GetPaneToggleButtonWidth()
    method GetPaneToggleButtonHeight (line 4081) | double GetPaneToggleButtonHeight()
    method UpdateTopNavigationWidthCache (line 4086) | void UpdateTopNavigationWidthCache()
    method IsTopNavigationView (line 4110) | bool IsTopNavigationView()
    method IsTopPrimaryListVisible (line 4115) | bool IsTopPrimaryListVisible()
    method CoerceToGreaterThanZero (line 4120) | void CoerceToGreaterThanZero(ref double value)
    method PropertyChanged (line 4126) | void PropertyChanged(DependencyPropertyChangedEventArgs args)
    method UpdateNavigationViewItemsFactory (line 4277) | void UpdateNavigationViewItemsFactory()
    method SyncItemTemplates (line 4287) | void SyncItemTemplates()
    method OnRepeaterIsVisibleChanged (line 4292) | void OnRepeaterIsVisibleChanged(object sender, DependencyPropertyChang...
    method OnRepeaterLoaded (line 4307) | void OnRepeaterLoaded(object sender, RoutedEventArgs args)
    method OnUnloaded (line 4325) | void OnUnloaded(object sender, RoutedEventArgs args)
    method OnLoaded (line 4334) | void OnLoaded(object sender, RoutedEventArgs args)
    method OnIsPaneOpenChanged (line 4345) | void OnIsPaneOpenChanged()
    method UpdatePaneToggleButtonVisibility (line 4395) | void UpdatePaneToggleButtonVisibility()
    method UpdatePaneDisplayMode (line 4401) | void UpdatePaneDisplayMode()
    method UpdatePaneDisplayMode (line 4459) | void UpdatePaneDisplayMode(NavigationViewPaneDisplayMode oldDisplayMod...
    method UpdatePaneVisibility (line 4492) | void UpdatePaneVisibility()
    method SwapPaneHeaderContent (line 4519) | void SwapPaneHeaderContent(ContentControl newParentTrackRef, ContentCo...
    method UpdateContentBindingsForPaneDisplayMode (line 4532) | void UpdateContentBindingsForPaneDisplayMode()
    method UpdateHeaderVisibility (line 4558) | void UpdateHeaderVisibility()
    method UpdateHeaderVisibility (line 4568) | void UpdateHeaderVisibility(NavigationViewDisplayMode displayMode)
    method UpdatePaneTabFocusNavigation (line 4585) | void UpdatePaneTabFocusNavigation()
    method UpdatePaneToggleSize (line 4613) | void UpdatePaneToggleSize()
    method UpdateBackAndCloseButtonsVisibility (line 4655) | void UpdateBackAndCloseButtonsVisibility()
    method UpdatePaneTitleMargins (line 4782) | void UpdatePaneTitleMargins()
    method UpdateSelectionForMenuItems (line 4800) | void UpdateSelectionForMenuItems()
    method UpdateSelectedItemFromMenuItems (line 4826) | bool UpdateSelectedItemFromMenuItems(IList menuItems, bool foundFirstS...
    method OnTitleBarMetricsChanged (line 4857) | void OnTitleBarMetricsChanged(object sender, object args)
    method OnTitleBarIsVisibleChanged (line 4862) | void OnTitleBarIsVisibleChanged(CoreApplicationViewTitleBar sender, ob...
    method ClosePaneIfNeccessaryAfterItemIsClicked (line 4867) | void ClosePaneIfNeccessaryAfterItemIsClicked(NavigationViewItem select...
    method NeedTopPaddingForRS5OrHigher (line 4878) | bool NeedTopPaddingForRS5OrHigher(CoreApplicationViewTitleBar coreTitl...
    method UpdateTitleBarPadding (line 4887) | void UpdateTitleBarPadding()
    method RaiseDisplayModeChanged (line 5003) | void RaiseDisplayModeChanged(NavigationViewDisplayMode displayMode)
    method CreateAndAttachHeaderAnimation (line 5013) | void CreateAndAttachHeaderAnimation(Visual visual)
    method IsFullScreenOrTabletMode (line 5029) | bool IsFullScreenOrTabletMode()
    method UpdatePaneShadow (line 5052) | void UpdatePaneShadow()
    method GetContainerForData (line 5105) | T GetContainerForData<T>(object data) where T : class
    method SearchEntireTreeForContainer (line 5167) | UIElement SearchEntireTreeForContainer(ItemsRepeater rootRepeater, obj...
    method SearchEntireTreeForIndexPath (line 5195) | IndexPath SearchEntireTreeForIndexPath(ItemsRepeater rootRepeater, obj...
    method SearchEntireTreeForIndexPath (line 5217) | IndexPath SearchEntireTreeForIndexPath(NavigationViewItem parentContai...
    method ResolveContainerForItem (line 5304) | NavigationViewItemBase ResolveContainerForItem(object item, int index)
    method RecycleContainer (line 5320) | void RecycleContainer(UIElement container)
    method GetContainerCountInRepeater (line 5327) | int GetContainerCountInRepeater(ItemsRepeater ir)
    method DoesRepeaterHaveRealizedContainers (line 5339) | bool DoesRepeaterHaveRealizedContainers(ItemsRepeater ir)
    method GetIndexFromItem (line 5351) | int GetIndexFromItem(ItemsRepeater ir, object data)
    method GetItemFromIndex (line 5363) | object GetItemFromIndex(ItemsRepeater ir, int index)
    method GetIndexPathOfItem (line 5375) | IndexPath GetIndexPathOfItem(object data)
    method GetContainerForIndex (line 5431) | UIElement GetContainerForIndex(int index, bool inFooter)
    method GetContainerForIndexPath (line 5459) | NavigationViewItemBase GetContainerForIndexPath(IndexPath ip, bool las...
    method GetContainerForIndexPath (line 5487) | NavigationViewItemBase GetContainerForIndexPath(UIElement firstContain...
    method IsContainerTheSelectedItemInTheSelectionModel (line 5521) | bool IsContainerTheSelectedItemInTheSelectionModel(NavigationViewItemB...
    method LeftNavRepeater (line 5536) | internal ItemsRepeater LeftNavRepeater()
    method GetSelectedContainer (line 5541) | internal NavigationViewItem GetSelectedContainer()
    method Expand (line 5557) | internal void Expand(NavigationViewItem item)
    method Collapse (line 5562) | internal void Collapse(NavigationViewItem item)
    method DoesNavigationViewItemHaveChildren (line 5567) | bool DoesNavigationViewItemHaveChildren(NavigationViewItem nvi)
    method ToggleIsExpandedNavigationViewItem (line 5572) | void ToggleIsExpandedNavigationViewItem(NavigationViewItem nvi)
    method ChangeIsExpandedNavigationViewItem (line 5577) | void ChangeIsExpandedNavigationViewItem(NavigationViewItem nvi, bool i...
    method FindLowestLevelContainerToDisplaySelectionIndicator (line 5585) | NavigationViewItem FindLowestLevelContainerToDisplaySelectionIndicator()
    method ShowHideChildrenItemsRepeater (line 5618) | void ShowHideChildrenItemsRepeater(NavigationViewItem nvi)
    method GetChildren (line 5652) | object GetChildren(NavigationViewItem nvi)
    method GetChildRepeaterForIndexPath (line 5661) | ItemsRepeater GetChildRepeaterForIndexPath(IndexPath ip)
    method GetChildrenForItemInIndexPath (line 5671) | object GetChildrenForItemInIndexPath(IndexPath ip, bool forceRealize =...
    method GetChildrenForItemInIndexPath (line 5683) | object GetChildrenForItemInIndexPath(UIElement firstContainer, IndexPa...
    method CollapseTopLevelMenuItems (line 5773) | void CollapseTopLevelMenuItems(NavigationViewPaneDisplayMode oldDispla...
    method CollapseMenuItemsInRepeater (line 5787) | void CollapseMenuItemsInRepeater(ItemsRepeater ir)
    method RaiseExpandingEvent (line 5801) | void RaiseExpandingEvent(NavigationViewItemBase container)
    method RaiseCollapsedEvent (line 5808) | void RaiseCollapsedEvent(NavigationViewItemBase container)
    method IsTopLevelItem (line 5815) | bool IsTopLevelItem(NavigationViewItemBase nvib)
    method GetTemplateChild (line 5820) | DependencyObject IControlProtected.GetTemplateChild(string childName)
    method OnDpiChanged (line 5826) | protected override void OnDpiChanged(DpiScale oldDpi, DpiScale newDpi)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationView.properties.cs
  class NavigationView (line 16) | partial class NavigationView
    method OnIsPaneOpenPropertyChanged (line 52) | private static void OnIsPaneOpenPropertyChanged(DependencyObject sende...
    method OnCompactModeThresholdWidthPropertyChanged (line 75) | private static void OnCompactModeThresholdWidthPropertyChanged(Depende...
    method OnExpandedModeThresholdWidthPropertyChanged (line 98) | private static void OnExpandedModeThresholdWidthPropertyChanged(Depend...
    method OnFooterMenuItemsPropertyChanged (line 120) | private static void OnFooterMenuItemsPropertyChanged(DependencyObject ...
    method OnFooterMenuItemsSourcePropertyChanged (line 143) | private static void OnFooterMenuItemsSourcePropertyChanged(DependencyO...
    method OnPaneFooterPropertyChanged (line 166) | private static void OnPaneFooterPropertyChanged(DependencyObject sende...
    method OnHeaderPropertyChanged (line 189) | private static void OnHeaderPropertyChanged(DependencyObject sender, D...
    method OnHeaderTemplatePropertyChanged (line 212) | private static void OnHeaderTemplatePropertyChanged(DependencyObject s...
    method OnDisplayModePropertyChanged (line 236) | private static void OnDisplayModePropertyChanged(DependencyObject send...
    method OnIsSettingsVisiblePropertyChanged (line 259) | private static void OnIsSettingsVisiblePropertyChanged(DependencyObjec...
    method OnIsPaneToggleButtonVisiblePropertyChanged (line 282) | private static void OnIsPaneToggleButtonVisiblePropertyChanged(Depende...
    method OnAlwaysShowHeaderPropertyChanged (line 305) | private static void OnAlwaysShowHeaderPropertyChanged(DependencyObject...
    method OnCompactPaneLengthPropertyChanged (line 328) | private static void OnCompactPaneLengthPropertyChanged(DependencyObjec...
    method OnOpenPaneLengthPropertyChanged (line 351) | private static void OnOpenPaneLengthPropertyChanged(DependencyObject s...
    method OnPaneToggleButtonStylePropertyChanged (line 374) | private static void OnPaneToggleButtonStylePropertyChanged(DependencyO...
    method OnIsFooterSeparatorVisiblePropertyChanged (line 391) | private static void OnIsFooterSeparatorVisiblePropertyChanged(Dependen...
    method OnSelectedItemPropertyChanged (line 420) | private static void OnSelectedItemPropertyChanged(DependencyObject sen...
    method OnMenuItemsPropertyChanged (line 445) | private static void OnMenuItemsPropertyChanged(DependencyObject sender...
    method OnMenuItemsSourcePropertyChanged (line 468) | private static void OnMenuItemsSourcePropertyChanged(DependencyObject ...
    method OnSettingsItemPropertyChanged (line 492) | private static void OnSettingsItemPropertyChanged(DependencyObject sen...
    method OnAutoSuggestBoxPropertyChanged (line 515) | private static void OnAutoSuggestBoxPropertyChanged(DependencyObject s...
    method OnMenuItemTemplatePropertyChanged (line 538) | private static void OnMenuItemTemplatePropertyChanged(DependencyObject...
    method OnMenuItemTemplateSelectorPropertyChanged (line 561) | private static void OnMenuItemTemplateSelectorPropertyChanged(Dependen...
    method OnMenuItemContainerStylePropertyChanged (line 584) | private static void OnMenuItemContainerStylePropertyChanged(Dependency...
    method OnMenuItemContainerStyleSelectorPropertyChanged (line 607) | private static void OnMenuItemContainerStyleSelectorPropertyChanged(De...
    method OnMenuItemContainerStyleSelectorPropertyChanged (line 612) | private void OnMenuItemContainerStyleSelectorPropertyChanged(Dependenc...
    method OnIsBackButtonVisiblePropertyChanged (line 634) | private static void OnIsBackButtonVisiblePropertyChanged(DependencyObj...
    method OnIsBackEnabledPropertyChanged (line 657) | private static void OnIsBackEnabledPropertyChanged(DependencyObject se...
    method OnPaneTitlePropertyChanged (line 680) | private static void OnPaneTitlePropertyChanged(DependencyObject sender...
    method OnPaneDisplayModePropertyChanged (line 703) | private static void OnPaneDisplayModePropertyChanged(DependencyObject ...
    method OnIsPaneVisiblePropertyChanged (line 777) | private static void OnIsPaneVisiblePropertyChanged(DependencyObject se...
    method OnSelectionFollowsFocusPropertyChanged (line 800) | private static void OnSelectionFollowsFocusPropertyChanged(DependencyO...
    method OnShoulderNavigationEnabledPropertyChanged (line 843) | private static void OnShoulderNavigationEnabledPropertyChanged(Depende...
    method OnOverflowLabelModePropertyChanged (line 866) | private static void OnOverflowLabelModePropertyChanged(DependencyObjec...
    method OnIsTitleBarAutoPaddingEnabledPropertyChanged (line 889) | private static void OnIsTitleBarAutoPaddingEnabledPropertyChanged(Depe...
    method CoerceToGreaterThanZero (line 908) | private static object CoerceToGreaterThanZero(DependencyObject d, obje...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewAutomationPeer.cs
  class NavigationViewAutomationPeer (line 10) | internal class NavigationViewAutomationPeer : FrameworkElementAutomation...
    method NavigationViewAutomationPeer (line 12) | public NavigationViewAutomationPeer(NavigationView owner) :
    method GetPattern (line 17) | public override object GetPattern(PatternInterface patternInterface)
    method GetSelection (line 31) | public IRawElementProviderSimple[] GetSelection()
    method RaiseSelectionChangedEvent (line 46) | internal void RaiseSelectionChangedEvent(object oldSelection, object n...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewBackRequestedEventArgs.cs
  class NavigationViewBackRequestedEventArgs (line 8) | public sealed class NavigationViewBackRequestedEventArgs : EventArgs
    method NavigationViewBackRequestedEventArgs (line 10) | internal NavigationViewBackRequestedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewDisplayModeChangedEventArgs.cs
  class NavigationViewDisplayModeChangedEventArgs (line 8) | public sealed class NavigationViewDisplayModeChangedEventArgs : EventArgs
    method NavigationViewDisplayModeChangedEventArgs (line 10) | internal NavigationViewDisplayModeChangedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewHelper.cs
  type NavigationViewVisualStateDisplayMode (line 9) | enum NavigationViewVisualStateDisplayMode
  type NavigationViewRepeaterPosition (line 17) | enum NavigationViewRepeaterPosition
  type NavigationViewPropagateTarget (line 26) | enum NavigationViewPropagateTarget
  class NavigationViewItemHelper (line 34) | class NavigationViewItemHelper
    method NavigationViewItemHelper (line 47) | public NavigationViewItemHelper()
    method GetSelectionIndicator (line 51) | public UIElement GetSelectionIndicator() { return m_selectionIndicator; }
    method Init (line 53) | public void Init(IControlProtected controlProtected)
  class NavigationViewItemHelper (line 45) | class NavigationViewItemHelper<T> : NavigationViewItemHelper
    method NavigationViewItemHelper (line 47) | public NavigationViewItemHelper()
    method GetSelectionIndicator (line 51) | public UIElement GetSelectionIndicator() { return m_selectionIndicator; }
    method Init (line 53) | public void Init(IControlProtected controlProtected)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItem.cs
  class NavigationViewItem (line 22) | public partial class NavigationViewItem : NavigationViewItemBase
    method NavigationViewItem (line 43) | static NavigationViewItem()
    method NavigationViewItem (line 50) | public NavigationViewItem()
    method UpdateVisualStateNoTransition (line 55) | internal void UpdateVisualStateNoTransition()
    method OnNavigationViewItemBaseDepthChanged (line 60) | private protected override void OnNavigationViewItemBaseDepthChanged()
    method OnNavigationViewItemBaseIsSelectedChanged (line 66) | private protected override void OnNavigationViewItemBaseIsSelectedChan...
    method OnNavigationViewItemBasePositionChanged (line 71) | private protected override void OnNavigationViewItemBasePositionChanged()
    method OnApplyTemplate (line 77) | public override void OnApplyTemplate()
    method UpdateRepeaterItemsSource (line 158) | void UpdateRepeaterItemsSource()
    method OnItemsSourceViewChanged (line 180) | private void OnItemsSourceViewChanged(object sender, NotifyCollectionC...
    method GetSelectionIndicator (line 185) | internal UIElement GetSelectionIndicator()
    method OnSplitViewPropertyChanged (line 195) | void OnSplitViewPropertyChanged(DependencyObject sender, DependencyPro...
    method UpdateCompactPaneLength (line 209) | void UpdateCompactPaneLength()
    method UpdateIsClosedCompact (line 223) | internal void UpdateIsClosedCompact()
    method UpdateNavigationViewItemToolTip (line 240) | void UpdateNavigationViewItemToolTip()
    method SuggestedToolTipChanged (line 258) | void SuggestedToolTipChanged(object newContent)
    method OnIsExpandedPropertyChanged (line 284) | void OnIsExpandedPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnIconPropertyChanged (line 297) | void OnIconPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnInfoBadgePropertyChanged (line 302) | void OnInfoBadgePropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnMenuItemsPropertyChanged (line 307) | void OnMenuItemsPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnMenuItemsSourcePropertyChanged (line 313) | void OnMenuItemsSourcePropertyChanged(DependencyPropertyChangedEventAr...
    method OnHasUnrealizedChildrenPropertyChanged (line 319) | void OnHasUnrealizedChildrenPropertyChanged(DependencyPropertyChangedE...
    method ShowSelectionIndicator (line 324) | void ShowSelectionIndicator(bool visible)
    method UpdateVisualStateForIconAndContent (line 332) | void UpdateVisualStateForIconAndContent(bool showIcon, bool showContent)
    method UpdateVisualStateForInfoBadge (line 341) | void UpdateVisualStateForInfoBadge()
    method UpdateVisualStateForNavigationViewPositionChange (line 350) | void UpdateVisualStateForNavigationViewPositionChange()
    method UpdateVisualStateForKeyboardFocusedState (line 393) | void UpdateVisualStateForKeyboardFocusedState()
    method UpdateVisualStateForToolTip (line 404) | void UpdateVisualStateForToolTip()
    method UpdateVisualStateForPointer (line 429) | void UpdateVisualStateForPointer()
    method UpdateVisualState (line 492) | void UpdateVisualState(bool useTransitions)
    method UpdateVisualStateForChevron (line 523) | void UpdateVisualStateForChevron()
    method HasChildren (line 532) | internal bool HasChildren()
    method ShouldShowIcon (line 539) | bool ShouldShowIcon()
    method ShouldShowInfoBadge (line 544) | bool ShouldShowInfoBadge()
    method ShouldEnableToolTip (line 549) | bool ShouldEnableToolTip()
    method ShouldShowContent (line 555) | bool ShouldShowContent()
    method IsOnLeftNav (line 560) | bool IsOnLeftNav()
    method IsOnTopPrimary (line 566) | bool IsOnTopPrimary()
    method GetPresenterOrItem (line 571) | UIElement GetPresenterOrItem()
    method GetPresenter (line 583) | NavigationViewItemPresenter GetPresenter()
    method GetRepeater (line 593) | internal ItemsRepeater GetRepeater() { return m_repeater; }
    method ShowHideChildren (line 595) | internal void ShowHideChildren()
    method ReparentRepeater (line 632) | void ReparentRepeater()
    method ShouldRepeaterShowInFlyout (line 660) | internal bool ShouldRepeaterShowInFlyout()
    method IsRepeaterVisible (line 665) | internal bool IsRepeaterVisible()
    method UpdateItemIndentation (line 674) | void UpdateItemIndentation()
    method PropagateDepthToChildren (line 684) | internal void PropagateDepthToChildren(int depth)
    method OnExpandCollapseChevronTapped (line 702) | internal void OnExpandCollapseChevronTapped(object sender, TappedRoute...
    method OnFlyoutClosing (line 708) | void OnFlyoutClosing(object sender, FlyoutBaseClosingEventArgs args)
    method OnCreateAutomationPeer (line 714) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnContentChanged (line 720) | protected override void OnContentChanged(object oldContent, object new...
    method OnGotFocus (line 736) | protected override void OnGotFocus(RoutedEventArgs e)
    method OnLostFocus (line 757) | protected override void OnLostFocus(RoutedEventArgs e)
    method OnPresenterPointerPressed (line 767) | void OnPresenterPointerPressed(object sender, PointerRoutedEventArgs a...
    method OnPresenterPointerReleased (line 788) | void OnPresenterPointerReleased(object sender, PointerRoutedEventArgs ...
    method OnPresenterPointerEntered (line 807) | void OnPresenterPointerEntered(object sender, PointerRoutedEventArgs a...
    method OnPresenterPointerMoved (line 812) | void OnPresenterPointerMoved(object sender, PointerRoutedEventArgs args)
    method OnPresenterPointerExited (line 817) | void OnPresenterPointerExited(object sender, PointerRoutedEventArgs args)
    method OnPresenterPointerCanceled (line 823) | void OnPresenterPointerCanceled(object sender, PointerRoutedEventArgs ...
    method OnPresenterPointerCaptureLost (line 828) | void OnPresenterPointerCaptureLost(object sender, PointerRoutedEventAr...
    method OnIsEnabledChanged (line 833) | void OnIsEnabledChanged(object sender, DependencyPropertyChangedEventA...
    method RotateExpandCollapseChevron (line 854) | internal void RotateExpandCollapseChevron(bool isExpanded)
    method ProcessPointerCanceled (line 862) | void ProcessPointerCanceled(PointerRoutedEventArgs args)
    method ProcessPointerOver (line 870) | void ProcessPointerOver(PointerRoutedEventArgs args)
    method HookInputEvents (line 879) | void HookInputEvents(IControlProtected controlProtected)
    method UnhookInputEvents (line 909) | void UnhookInputEvents()
    method UnhookEventsAndClearFields (line 920) | void UnhookEventsAndClearFields()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItem.properties.cs
  class NavigationViewItem (line 12) | partial class NavigationViewItem
    method OnIconPropertyChanged (line 29) | private static void OnIconPropertyChanged(DependencyObject sender, Dep...
    method OnInfoBadgePropertyChanged (line 52) | private static void OnInfoBadgePropertyChanged(DependencyObject sender...
    method OnIsExpandedPropertyChanged (line 114) | private static void OnIsExpandedPropertyChanged(DependencyObject sende...
    method OnHasUnrealizedChildrenPropertyChanged (line 138) | private static void OnHasUnrealizedChildrenPropertyChanged(DependencyO...
    method OnMenuItemsPropertyChanged (line 180) | private static void OnMenuItemsPropertyChanged(DependencyObject sender...
    method OnMenuItemsSourcePropertyChanged (line 203) | private static void OnMenuItemsSourcePropertyChanged(DependencyObject ...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemAutomationPeer.cs
  class NavigationViewItemAutomationPeer (line 14) | public class NavigationViewItemAutomationPeer :
    method NavigationViewItemAutomationPeer (line 22) | public NavigationViewItemAutomationPeer(NavigationViewItem owner) :
    method GetNameCore (line 27) | protected override string GetNameCore()
    method GetPattern (line 51) | public override object GetPattern(PatternInterface pattern)
    method GetClassNameCore (line 63) | protected override string GetClassNameCore()
    method GetAutomationControlTypeCore (line 68) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetPositionInSetCore (line 85) | protected override int GetPositionInSetCore()
    method GetSizeOfSetCore (line 101) | protected override int GetSizeOfSetCore()
    method Invoke (line 121) | void IInvokeProvider.Invoke()
    method Collapse (line 155) | void IExpandCollapseProvider.Collapse()
    method Expand (line 167) | void IExpandCollapseProvider.Expand()
    method RaiseExpandCollapseAutomationEvent (line 179) | internal void RaiseExpandCollapseAutomationEvent(ExpandCollapseState n...
    method GetParentNavigationView (line 196) | NavigationView GetParentNavigationView()
    method GetNavigationViewItemCountInPrimaryList (line 208) | int GetNavigationViewItemCountInPrimaryList()
    method GetNavigationViewItemCountInTopNav (line 218) | int GetNavigationViewItemCountInTopNav()
    method IsSettingsItem (line 228) | bool IsSettingsItem()
    method IsOnTopNavigation (line 242) | bool IsOnTopNavigation()
    method IsOnTopNavigationOverflow (line 248) | internal bool IsOnTopNavigationOverflow()
    method IsOnFooterNavigation (line 253) | bool IsOnFooterNavigation()
    method GetNavigationViewRepeaterPosition (line 259) | NavigationViewRepeaterPosition GetNavigationViewRepeaterPosition()
    method GetParentItemsRepeater (line 268) | ItemsRepeater GetParentItemsRepeater()
    method GetPositionOrSetCountInLeftNavHelper (line 284) | int GetPositionOrSetCountInLeftNavHelper(AutomationOutput automationOu...
    method GetPositionOrSetCountInTopNavHelper (line 345) | int GetPositionOrSetCountInTopNavHelper(AutomationOutput automationOut...
    method AddToSelection (line 426) | void ISelectionItemProvider.AddToSelection()
    method Select (line 431) | void ISelectionItemProvider.Select()
    method RemoveFromSelection (line 436) | void ISelectionItemProvider.RemoveFromSelection()
    method ChangeSelection (line 441) | void ChangeSelection(bool isSelected)
    method HasChildren (line 449) | bool HasChildren()
    type AutomationOutput (line 458) | enum AutomationOutput

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemBase.cs
  class NavigationViewItemBase (line 14) | public class NavigationViewItemBase : ContentControl, IControlProtected
    method NavigationViewItemBase (line 16) | static NavigationViewItemBase()
    method NavigationViewItemBase (line 31) | internal NavigationViewItemBase()
    method OnIsSelectedPropertyChanged (line 52) | private static void OnIsSelectedPropertyChanged(DependencyObject sende...
    method OnIsSelectedPropertyChanged (line 57) | private void OnIsSelectedPropertyChanged(DependencyPropertyChangedEven...
    method OnNavigationViewItemBasePositionChanged (line 91) | private protected virtual void OnNavigationViewItemBasePositionChanged...
    method GetNavigationView (line 93) | internal NavigationView GetNavigationView()
    method OnNavigationViewItemBaseDepthChanged (line 115) | private protected virtual void OnNavigationViewItemBaseDepthChanged() { }
    method OnNavigationViewItemBaseIsSelectedChanged (line 117) | private protected virtual void OnNavigationViewItemBaseIsSelectedChang...
    method GetSplitView (line 119) | internal SplitView GetSplitView()
    method SetNavigationViewParent (line 130) | internal void SetNavigationViewParent(NavigationView navigationView)
    method OnPropertyChangedPrivate (line 135) | void OnPropertyChangedPrivate(DependencyPropertyChangedEventArgs args)
    method GetTemplateChild (line 143) | DependencyObject IControlProtected.GetTemplateChild(string childName)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemCollapsedEventArgs.cs
  class NavigationViewItemCollapsedEventArgs (line 8) | public sealed class NavigationViewItemCollapsedEventArgs : EventArgs
    method NavigationViewItemCollapsedEventArgs (line 10) | internal NavigationViewItemCollapsedEventArgs(NavigationView navigatio...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemExpandingEventArgs.cs
  class NavigationViewItemExpandingEventArgs (line 8) | public sealed class NavigationViewItemExpandingEventArgs : EventArgs
    method NavigationViewItemExpandingEventArgs (line 10) | internal NavigationViewItemExpandingEventArgs(NavigationView navigatio...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemHeader.cs
  class NavigationViewItemHeader (line 9) | public class NavigationViewItemHeader : NavigationViewItemBase
    method NavigationViewItemHeader (line 13) | static NavigationViewItemHeader()
    method NavigationViewItemHeader (line 20) | public NavigationViewItemHeader()
    method OnApplyTemplate (line 24) | public override void OnApplyTemplate()
    method OnSplitViewPropertyChanged (line 51) | void OnSplitViewPropertyChanged(DependencyObject sender, DependencyPro...
    method UpdateIsClosedCompact (line 60) | void UpdateIsClosedCompact()
    method UpdateVisualState (line 70) | void UpdateVisualState(bool useTransitions)
    method OnNavigationViewItemBaseDepthChanged (line 75) | private protected override void OnNavigationViewItemBaseDepthChanged()
    method UpdateItemIndentation (line 80) | void UpdateItemIndentation()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemInvokedEventArgs.cs
  class NavigationViewItemInvokedEventArgs (line 9) | public sealed class NavigationViewItemInvokedEventArgs : EventArgs
    method NavigationViewItemInvokedEventArgs (line 11) | public NavigationViewItemInvokedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemPresenter.cs
  class NavigationViewItemPresenter (line 19) | public class NavigationViewItemPresenter : ContentControl, IControlProte...
    method NavigationViewItemPresenter (line 29) | static NavigationViewItemPresenter()
    method NavigationViewItemPresenter (line 44) | public NavigationViewItemPresenter()
    method OnApplyTemplate (line 109) | public override void OnApplyTemplate()
    method RotateExpandCollapseChevron (line 155) | internal void RotateExpandCollapseChevron(bool isExpanded)
    method GetSelectionIndicator (line 183) | internal UIElement GetSelectionIndicator()
    method GetNavigationViewItem (line 207) | NavigationViewItem GetNavigationViewItem()
    method UpdateContentLeftIndentation (line 221) | internal void UpdateContentLeftIndentation(double leftIndentation)
    method UpdateMargin (line 227) | void UpdateMargin()
    method UpdateCompactPaneLength (line 236) | internal void UpdateCompactPaneLength(double compactPaneLength, bool s...
    method UpdateClosedCompactVisualState (line 249) | internal void UpdateClosedCompactVisualState(bool isTopLevelItem, bool...
    method GetTemplateChild (line 263) | DependencyObject IControlProtected.GetTemplateChild(string childName)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemSeparator.cs
  class NavigationViewItemSeparator (line 11) | public class NavigationViewItemSeparator : NavigationViewItemBase
    method NavigationViewItemSeparator (line 15) | static NavigationViewItemSeparator()
    method NavigationViewItemSeparator (line 22) | public NavigationViewItemSeparator()
    method UpdateVisualState (line 26) | void UpdateVisualState(bool useTransitions)
    method OnApplyTemplate (line 41) | public override void OnApplyTemplate()
    method OnNavigationViewItemBaseDepthChanged (line 65) | private protected override void OnNavigationViewItemBaseDepthChanged()
    method OnNavigationViewItemBasePositionChanged (line 70) | private protected override void OnNavigationViewItemBasePositionChanged()
    method OnSplitViewPropertyChanged (line 75) | void OnSplitViewPropertyChanged(DependencyObject sender, DependencyPro...
    method UpdateItemIndentation (line 80) | void UpdateItemIndentation()
    method UpdateIsClosedCompact (line 91) | void UpdateIsClosedCompact(bool updateVisualState)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewItemsFactory.cs
  class NavigationViewItemsFactory (line 11) | class NavigationViewItemsFactory : ElementFactory
    method UserElementFactory (line 13) | public void UserElementFactory(object newValue)
    method SettingsItem (line 33) | internal void SettingsItem(NavigationViewItemBase settingsItem)
    method GetElementCore (line 41) | protected override UIElement GetElementCore(ElementFactoryGetArgs args)
    method RecycleElementCore (line 108) | protected override void RecycleElementCore(ElementFactoryRecycleArgs a...
    method UnlinkElementFromParent (line 149) | void UnlinkElementFromParent(ElementFactoryRecycleArgs args)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewPaneClosingEventArgs.cs
  class NavigationViewPaneClosingEventArgs (line 8) | public sealed class NavigationViewPaneClosingEventArgs : EventArgs
    method NavigationViewPaneClosingEventArgs (line 10) | internal NavigationViewPaneClosingEventArgs()
    method SplitViewClosingArgs (line 28) | internal void SplitViewClosingArgs(SplitViewPaneClosingEventArgs value)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewSelectionChangedEventArgs.cs
  class NavigationViewSelectionChangedEventArgs (line 9) | public sealed class NavigationViewSelectionChangedEventArgs : EventArgs
    method NavigationViewSelectionChangedEventArgs (line 11) | internal NavigationViewSelectionChangedEventArgs()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/NavigationViewTemplateSettings.cs
  class NavigationViewTemplateSettings (line 8) | public class NavigationViewTemplateSettings : DependencyObject
    method NavigationViewTemplateSettings (line 10) | public NavigationViewTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/SplitDataSourceBase.cs
  class SplitVector (line 24) | class SplitVector<T, SplitVectorID>
    method SplitVector (line 26) | public SplitVector(SplitVectorID id, Func<T, int> indexOfFunction)
    method GetVectorIDForItem (line 42) | public SplitVectorID GetVectorIDForItem() { return m_vectorID; }
    method GetVector (line 44) | public IList GetVector() { return m_vector; }
    method OnRawDataRemove (line 46) | public void OnRawDataRemove(int indexInOriginalVector, SplitVectorID v...
    method OnRawDataInsert (line 64) | public void OnRawDataInsert(int preferIndex, int indexInOriginalVector...
    method InsertAt (line 81) | public void InsertAt(int preferIndex, int indexInOriginalVector, T value)
    method Replace (line 89) | public void Replace(int indexInOriginalVector, T value)
    method Clear (line 99) | public void Clear()
    method RemoveAt (line 105) | public void RemoveAt(int indexInOriginalVector)
    method IndexOf (line 114) | public int IndexOf(T value)
    method IndexToIndexInOriginalVector (line 120) | public int IndexToIndexInOriginalVector(int index)
    method IndexFromIndexInOriginalVector (line 126) | public int IndexFromIndexInOriginalVector(int indexInOriginalVector)
    method Size (line 136) | int Size() { return m_indexesInOriginalVector.Count; }
  class SplitDataSourceBase (line 144) | class SplitDataSourceBase<T, SplitVectorID, AttachedDataType> where Spli...
    method GetVectorIDForItem (line 148) | public SplitVectorID GetVectorIDForItem(int index)
    method AttachedData (line 154) | public AttachedDataType AttachedData(int index)
    method AttachedData (line 160) | public void AttachedData(int index, AttachedDataType attachedData)
    method ResetAttachedData (line 166) | public void ResetAttachedData()
    method ResetAttachedData (line 171) | public void ResetAttachedData(AttachedDataType attachedData)
    method GetVectorForItem (line 179) | public SplitVector<T, SplitVectorID> GetVectorForItem(int index)
    method MoveItemsToVector (line 188) | public void MoveItemsToVector(SplitVectorID newVectorID)
    method MoveItemsToVector (line 193) | public void MoveItemsToVector(int start, int end, SplitVectorID newVec...
    method MoveItemToVector (line 202) | public void MoveItemToVector(int index, SplitVectorID newVectorID)
    method IndexOf (line 228) | internal virtual int IndexOf(T value) => 0;
    method GetAt (line 229) | internal virtual T GetAt(int index) => default;
    method Size (line 230) | internal virtual int Size() => 0;
    method DefaultVectorIDOnInsert (line 231) | internal virtual SplitVectorID DefaultVectorIDOnInsert() => default;
    method DefaultAttachedData (line 232) | internal virtual AttachedDataType DefaultAttachedData() => default;
    method IndexOfImpl (line 234) | public int IndexOfImpl(T value, SplitVectorID vectorID)
    method InitializeSplitVectors (line 249) | public void InitializeSplitVectors(List<SplitVector<T, SplitVectorID>>...
    method GetVector (line 257) | public SplitVector<T, SplitVectorID> GetVector(SplitVectorID vectorID)
    method OnClear (line 263) | public void OnClear()
    method OnRemoveAt (line 278) | public void OnRemoveAt(int startIndex, int count)
    method OnInsertAt (line 286) | public void OnInsertAt(int startIndex, int count)
    method RawDataSize (line 294) | public int RawDataSize()
    method SyncAndInitVectorFlagsWithID (line 299) | public void SyncAndInitVectorFlagsWithID(SplitVectorID defaultID, Atta...
    method Clear (line 309) | public void Clear()
    method OnRemoveAt (line 314) | void OnRemoveAt(int index)
    method OnReplace (line 331) | void OnReplace(int index)
    method OnInsertAt (line 340) | void OnInsertAt(int index)
    method GetPreferIndex (line 360) | int GetPreferIndex(int index, SplitVectorID vectorID)
    method RangeCount (line 365) | int RangeCount(int start, int end, SplitVectorID vectorID)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NavigationView/TopNavigationViewDataProvider.cs
  type NavigationViewSplitVectorID (line 14) | enum NavigationViewSplitVectorID
  class TopNavigationViewDataProvider (line 23) | class TopNavigationViewDataProvider : SplitDataSourceT
    method TopNavigationViewDataProvider (line 25) | public TopNavigationViewDataProvider()
    method GetPrimaryItems (line 38) | public IList GetPrimaryItems()
    method GetOverflowItems (line 43) | public IList GetOverflowItems()
    method SetDataSource (line 49) | public void SetDataSource(object rawData)
    method ShouldChangeDataSource (line 67) | public bool ShouldChangeDataSource(object rawData)
    method OnRawDataChanged (line 72) | public void OnRawDataChanged(Action<NotifyCollectionChangedEventArgs> ...
    method IndexOf (line 77) | internal override int IndexOf(object value)
    method GetAt (line 86) | internal override object GetAt(int index)
    method Size (line 95) | internal override int Size()
    method DefaultVectorIDOnInsert (line 104) | internal override NavigationViewSplitVectorID DefaultVectorIDOnInsert()
    method DefaultAttachedData (line 109) | internal override double DefaultAttachedData()
    method MoveAllItemsToPrimaryList (line 114) | public void MoveAllItemsToPrimaryList()
    method ConvertPrimaryIndexToIndex (line 122) | public List<int> ConvertPrimaryIndexToIndex(List<int> indexesInPrimary)
    method ConvertOriginalIndexToIndex (line 140) | public int ConvertOriginalIndexToIndex(int originalIndex)
    method MoveItemsOutOfPrimaryList (line 146) | public void MoveItemsOutOfPrimaryList(List<int> indexes)
    method MoveItemsToPrimaryList (line 151) | public void MoveItemsToPrimaryList(List<int> indexes)
    method MoveItemsToList (line 156) | public void MoveItemsToList(List<int> indexes, NavigationViewSplitVect...
    method GetPrimaryListSize (line 164) | public int GetPrimaryListSize()
    method GetNavigationViewItemCountInPrimaryList (line 169) | public int GetNavigationViewItemCountInPrimaryList()
    method GetNavigationViewItemCountInTopNav (line 182) | public int GetNavigationViewItemCountInTopNav()
    method UpdateWidthForPrimaryItem (line 195) | public void UpdateWidthForPrimaryItem(int indexInPrimary, double width)
    method WidthRequiredToRecoveryAllItemsToPrimary (line 205) | public double WidthRequiredToRecoveryAllItemsToPrimary()
    method HasInvalidWidth (line 219) | public bool HasInvalidWidth(List<int> items)
    method GetWidthForItem (line 233) | public double GetWidthForItem(int index)
    method CalculateWidthForItems (line 243) | public double CalculateWidthForItems(List<int> items)
    method InvalidWidthCache (line 253) | public void InvalidWidthCache()
    method OverflowButtonWidth (line 258) | public double OverflowButtonWidth()
    method OverflowButtonWidth (line 263) | public void OverflowButtonWidth(double width)
    method IsItemSelectableInPrimaryList (line 268) | public bool IsItemSelectableInPrimaryList(object value)
    method IndexOf (line 274) | public int IndexOf(object value, NavigationViewSplitVectorID vectorID)
    method OnDataSourceChanged (line 279) | private void OnDataSourceChanged(object sender, NotifyCollectionChange...
    method IsValidWidth (line 314) | private bool IsValidWidth(double width)
    method IsValidWidthForItem (line 319) | public bool IsValidWidthForItem(int index)
    method SetWidthForItem (line 325) | private void SetWidthForItem(int index, double width)
    method ChangeDataSource (line 333) | private void ChangeDataSource(ItemsSourceView newValue)
    method IsItemInPrimaryList (line 360) | public bool IsItemInPrimaryList(int index)
    method IsContainerNavigationViewItem (line 365) | private bool IsContainerNavigationViewItem(int index)
    method IsContainerNavigationViewHeader (line 377) | private bool IsContainerNavigationViewHeader(int index)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/DefaultNumberBoxNumberFormatter.cs
  class DefaultNumberBoxNumberFormatter (line 3) | internal class DefaultNumberBoxNumberFormatter : INumberBoxNumberFormatter
    method FormatDouble (line 5) | public string FormatDouble(double value)
    method ParseDouble (line 10) | public double? ParseDouble(string text)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/DefaultNumberRounder.cs
  class DefaultNumberRounder (line 3) | internal class DefaultNumberRounder
    method RoundDouble (line 5) | public double RoundDouble(double value)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/Enums.cs
  type NumberBoxSpinButtonPlacementMode (line 6) | public enum NumberBoxSpinButtonPlacementMode
  type NumberBoxValidationMode (line 13) | public enum NumberBoxValidationMode

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/INumberBoxNumberFormatter.cs
  type INumberBoxNumberFormatter (line 3) | public interface INumberBoxNumberFormatter
    method FormatDouble (line 5) | string FormatDouble(double value);
    method ParseDouble (line 6) | double? ParseDouble(string text);

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/NumberBox.cs
  class NumberBoxValueChangedEventArgs (line 18) | public class NumberBoxValueChangedEventArgs : EventArgs
    method NumberBoxValueChangedEventArgs (line 20) | public NumberBoxValueChangedEventArgs(double oldValue, double newValue)
  class NumberBox (line 30) | [TemplatePart(Name = c_numberBoxDownButtonName, Type = typeof(RepeatButt...
    method NumberBox (line 53) | static NumberBox()
    method NumberBox (line 58) | public NumberBox()
    method SetDefaultInputScope (line 70) | void SetDefaultInputScope()
    method GetRegionalSettingsAwareDecimalFormatter (line 83) | private INumberBoxNumberFormatter GetRegionalSettingsAwareDecimalForma...
    method OnCreateAutomationPeer (line 88) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnApplyTemplate (line 93) | public override void OnApplyTemplate()
    method OnValuePropertyChanged (line 216) | private void OnValuePropertyChanged(DependencyPropertyChangedEventArgs...
    method OnMinimumPropertyChanged (line 253) | private void OnMinimumPropertyChanged(DependencyPropertyChangedEventAr...
    method OnMaximumPropertyChanged (line 261) | private void OnMaximumPropertyChanged(DependencyPropertyChangedEventAr...
    method OnSmallChangePropertyChanged (line 269) | private void OnSmallChangePropertyChanged(DependencyPropertyChangedEve...
    method OnIsWrapEnabledPropertyChanged (line 274) | private void OnIsWrapEnabledPropertyChanged(DependencyPropertyChangedE...
    method OnNumberFormatterPropertyChanged (line 279) | private void OnNumberFormatterPropertyChanged(DependencyPropertyChange...
    method ValidateNumberFormatter (line 285) | private void ValidateNumberFormatter(INumberBoxNumberFormatter value)
    method OnSpinButtonPlacementModePropertyChanged (line 293) | private void OnSpinButtonPlacementModePropertyChanged(DependencyProper...
    method OnTextPropertyChanged (line 298) | private void OnTextPropertyChanged(DependencyPropertyChangedEventArgs ...
    method UpdateValueToText (line 306) | private void UpdateValueToText()
    method OnHeaderPropertyChanged (line 315) | private void OnHeaderPropertyChanged(DependencyPropertyChangedEventArg...
    method OnHeaderTemplatePropertyChanged (line 320) | private void OnHeaderTemplatePropertyChanged(DependencyPropertyChanged...
    method OnValidationModePropertyChanged (line 325) | private void OnValidationModePropertyChanged(DependencyPropertyChanged...
    method OnIsEnabledChanged (line 331) | private void OnIsEnabledChanged(object sender, DependencyPropertyChang...
    method UpdateVisualStateForIsEnabledChange (line 336) | private void UpdateVisualStateForIsEnabledChange()
    method OnNumberBoxGotFocus (line 341) | private void OnNumberBoxGotFocus(object sender, RoutedEventArgs e)
    method OnNumberBoxLostFocus (line 358) | private void OnNumberBoxLostFocus(object sender, RoutedEventArgs e)
    method CoerceMinimum (line 368) | private void CoerceMinimum()
    method CoerceMaximum (line 377) | private void CoerceMaximum()
    method CoerceValue (line 386) | private void CoerceValue()
    method ValidateInput (line 405) | private void ValidateInput()
    method OnSpinDownClick (line 450) | private void OnSpinDownClick(object sender, RoutedEventArgs args)
    method OnSpinUpClick (line 455) | private void OnSpinUpClick(object sender, RoutedEventArgs args)
    method OnNumberBoxKeyDown (line 460) | private void OnNumberBoxKeyDown(object sender, KeyEventArgs args)
    method OnNumberBoxKeyUp (line 487) | private void OnNumberBoxKeyUp(object sender, KeyEventArgs args)
    method OnNumberBoxScroll (line 503) | private void OnNumberBoxScroll(object sender, MouseWheelEventArgs args)
    method StepValue (line 524) | private void StepValue(double change)
    method UpdateTextToValue (line 558) | private void UpdateTextToValue()
    method UpdateSpinButtonPlacement (line 586) | private void UpdateSpinButtonPlacement()
    method UpdateSpinButtonEnabled (line 604) | private void UpdateSpinButtonEnabled()
    method IsInBounds (line 635) | private bool IsInBounds(double value)
    method UpdateHeaderPresenterState (line 640) | private void UpdateHeaderPresenterState()
    method MoveCaretToTextEnd (line 684) | private void MoveCaretToTextEnd()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/NumberBox.properties.cs
  class NumberBox (line 9) | partial class NumberBox
    method OnMinimumPropertyChanged (line 26) | private static void OnMinimumPropertyChanged(DependencyObject sender, ...
    method OnMaximumPropertyChanged (line 48) | private static void OnMaximumPropertyChanged(DependencyObject sender, ...
    method OnValuePropertyChanged (line 73) | private static void OnValuePropertyChanged(DependencyObject sender, De...
    method OnSmallChangePropertyChanged (line 95) | private static void OnSmallChangePropertyChanged(DependencyObject send...
    method OnTextPropertyChanged (line 137) | private static void OnTextPropertyChanged(DependencyObject sender, Dep...
    method OnHeaderPropertyChanged (line 157) | private static void OnHeaderPropertyChanged(DependencyObject sender, D...
    method OnHeaderTemplatePropertyChanged (line 177) | private static void OnHeaderTemplatePropertyChanged(DependencyObject s...
    method OnValidationModePropertyChanged (line 258) | private static void OnValidationModePropertyChanged(DependencyObject s...
    method OnSpinButtonPlacementModePropertyChanged (line 280) | private static void OnSpinButtonPlacementModePropertyChanged(Dependenc...
    method OnIsWrapEnabledPropertyChanged (line 302) | private static void OnIsWrapEnabledPropertyChanged(DependencyObject se...
    method OnNumberFormatterPropertyChanged (line 346) | private static void OnNumberFormatterPropertyChanged(DependencyObject ...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/NumberBoxAutomationPeer.cs
  class NumberBoxAutomationPeer (line 11) | public class NumberBoxAutomationPeer : FrameworkElementAutomationPeer, I...
    method NumberBoxAutomationPeer (line 13) | public NumberBoxAutomationPeer(NumberBox owner) : base(owner)
    method GetPattern (line 17) | public override object GetPattern(PatternInterface patternInterface)
    method GetClassNameCore (line 27) | protected override string GetClassNameCore()
    method GetNameCore (line 32) | protected override string GetNameCore()
    method GetAutomationControlTypeCore (line 47) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetImpl (line 54) | NumberBox GetImpl()
    method SetValue (line 78) | public void SetValue(double value)
    method RaiseValueChangedEvent (line 83) | public void RaiseValueChangedEvent(double oldValue, double newValue)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/NumberBox/NumberBoxParser.cs
  type MathTokenType (line 11) | internal enum MathTokenType
  type MathToken (line 18) | internal struct MathToken
    method MathToken (line 20) | public MathToken(MathTokenType t, char c)
    method MathToken (line 27) | public MathToken(MathTokenType t, double d)
  class NumberBoxParser (line 39) | internal class NumberBoxParser
    method GetTokens (line 43) | static IList<MathToken> GetTokens(string input, INumberBoxNumberFormat...
    method GetNextNumber (line 104) | static (double, int) GetNextNumber(string input, INumberBoxNumberForma...
    method GetPrecedenceValue (line 125) | static int GetPrecedenceValue(char c)
    method ConvertInfixToPostfix (line 140) | static IList<MathToken> ConvertInfixToPostfix(IList<MathToken> infixTo...
    method ComputePostfixExpression (line 208) | static double? ComputePostfixExpression(IList<MathToken> tokens)
    method Compute (line 278) | public static double? Compute(string expr, INumberBoxNumberFormatter n...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ParallaxView/ParallaxView.cs
  class ParallaxView (line 18) | public class ParallaxView : ContentControl
    method ParallaxView (line 20) | static ParallaxView()
    method OnScrollUpdated (line 77) | private void OnScrollUpdated(ScrollViewer scrollViewer)
    method OnSourceChanged (line 103) | private static void OnSourceChanged(DependencyObject d, DependencyProp...
    method GetScrollViewer (line 121) | private static ScrollViewer GetScrollViewer(DependencyObject obj)
    method FindVisualChild (line 127) | private static ChildItem FindVisualChild<ChildItem>(DependencyObject obj)
  class AddValueConverter (line 146) | public class AddValueConverter : IMultiValueConverter
    method Convert (line 148) | public object Convert(object[] values, Type targetType, object paramet...
    method ConvertBack (line 162) | public object[] ConvertBack(object value, Type[] targetTypes, object p...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PersonPicture/InitialsGenerator.cs
  type CharacterType (line 12) | enum CharacterType
  class InitialsGenerator (line 39) | class InitialsGenerator
    method InitialsFromDisplayName (line 49) | public static string InitialsFromDisplayName(string contactDisplayName)
    method GetCharacterType (line 105) | public static CharacterType GetCharacterType(string str)
    method GetCharacterType (line 162) | public static CharacterType GetCharacterType(char character)
    method Split (line 463) | static string[] Split(string source, char delim, int maxIterations = 25)
    method StripTrailingBrackets (line 473) | static void StripTrailingBrackets(ref string source)
    method GetFirstFullCharacter (line 507) | static string GetFirstFullCharacter(string str)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PersonPicture/PersonPicture.cs
  class PersonPicture (line 17) | public partial class PersonPicture : Control
    method PersonPicture (line 21) | static PersonPicture()
    method PersonPicture (line 26) | public PersonPicture()
    method OnCreateAutomationPeer (line 34) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnApplyTemplate (line 39) | public override void OnApplyTemplate()
    method GetInitials (line 57) | string GetInitials()
    method GetImageSource (line 76) | ImageSource GetImageSource()
    method UpdateIfReady (line 91) | void UpdateIfReady()
    method UpdateBadge (line 143) | void UpdateBadge()
    method UpdateBadgeNumber (line 181) | void UpdateBadgeNumber()
    method UpdateBadgeGlyph (line 213) | void UpdateBadgeGlyph()
    method UpdateBadgeImageSource (line 238) | void UpdateBadgeImageSource()
    method UpdateAutomationName (line 265) | void UpdateAutomationName()
    method GetLocalizedPluralBadgeItemStringResource (line 336) | string GetLocalizedPluralBadgeItemStringResource(int numericValue)
    method PrivateOnPropertyChanged (line 377) | void PrivateOnPropertyChanged(DependencyPropertyChangedEventArgs args)
    method OnDisplayNameChanged (line 405) | void OnDisplayNameChanged(DependencyPropertyChangedEventArgs args)
    method OnSizeChanged (line 413) | void OnSizeChanged(object sender, SizeChangedEventArgs args)
    method OnUnloaded (line 470) | void OnUnloaded(object sender, RoutedEventArgs e)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PersonPicture/PersonPicture.properties.cs
  class PersonPicture (line 9) | partial class PersonPicture
    method OnBadgeGlyphPropertyChanged (line 26) | private static void OnBadgeGlyphPropertyChanged(DependencyObject sende...
    method OnBadgeImageSourcePropertyChanged (line 49) | private static void OnBadgeImageSourcePropertyChanged(DependencyObject...
    method OnBadgeNumberPropertyChanged (line 72) | private static void OnBadgeNumberPropertyChanged(DependencyObject send...
    method OnBadgeTextPropertyChanged (line 95) | private static void OnBadgeTextPropertyChanged(DependencyObject sender...
    method OnDisplayNamePropertyChanged (line 118) | private static void OnDisplayNamePropertyChanged(DependencyObject send...
    method OnInitialsPropertyChanged (line 141) | private static void OnInitialsPropertyChanged(DependencyObject sender,...
    method OnIsGroupPropertyChanged (line 164) | private static void OnIsGroupPropertyChanged(DependencyObject sender, ...
    method OnProfilePicturePropertyChanged (line 187) | private static void OnProfilePicturePropertyChanged(DependencyObject s...
    method OnTemplateSettingsPropertyChanged (line 213) | private static void OnTemplateSettingsPropertyChanged(DependencyObject...
    method CoerceStringProperty (line 221) | private static object CoerceStringProperty(DependencyObject d, object ...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PersonPicture/PersonPictureAutomationPeer.cs
  class PersonPictureAutomationPeer (line 9) | public class PersonPictureAutomationPeer : FrameworkElementAutomationPeer
    method PersonPictureAutomationPeer (line 11) | public PersonPictureAutomationPeer(PersonPicture owner) : base(owner)
    method GetAutomationControlTypeCore (line 15) | protected override AutomationControlType GetAutomationControlTypeCore()
    method GetClassNameCore (line 20) | protected override string GetClassNameCore()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PersonPicture/PersonPictureTemplateSettings.cs
  class PersonPictureTemplateSettings (line 9) | public sealed class PersonPictureTemplateSettings : DependencyObject

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/Enum.cs
  type PipsPagerButtonVisibility (line 12) | public enum PipsPagerButtonVisibility

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/PipsPager.cs
  class PipsPager (line 25) | public partial class PipsPager : Control, IControlProtected
    method PipsPager (line 63) | static PipsPager()
    method PipsPager (line 68) | public PipsPager()
    method OnCreateAutomationPeer (line 76) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnApplyTemplate (line 81) | public override void OnApplyTemplate()
    method RaiseSelectedIndexChanged (line 148) | void RaiseSelectedIndexChanged()
    method GetDesiredPipSize (line 154) | Size GetDesiredPipSize(Style style)
    method OnKeyDown (line 173) | void OnKeyDown(object sender, KeyEventArgs args)
    method UpdateIndividualNavigationButtonVisualState (line 202) | void UpdateIndividualNavigationButtonVisualState(bool hiddenOnEdgeCond...
    method UpdateNavigationButtonVisualStates (line 227) | void UpdateNavigationButtonVisualStates()
    method ScrollToCenterOfViewport (line 239) | void ScrollToCenterOfViewport(UIElement sender, int index)
    method UpdateSelectedPip (line 286) | void UpdateSelectedPip(int index)
    method CalculateScrollViewerSize (line 311) | double CalculateScrollViewerSize(double defaultPipSize, double selecte...
    method SetScrollViewerMaxSize (line 331) | void SetScrollViewerMaxSize()
    method UpdatePipsItems (line 351) | void UpdatePipsItems(int numberOfPages, int maxVisualIndicators)
    method OnElementPrepared (line 392) | void OnElementPrepared(object sender, ItemsRepeaterElementPreparedEven...
    method OnElementIndexChanged (line 421) | public void OnElementIndexChanged(ItemsRepeater UnnamedParameter, Item...
    method OnMaxVisiblePipsChanged (line 432) | void OnMaxVisiblePipsChanged()
    method OnNumberOfPagesChanged (line 444) | void OnNumberOfPagesChanged()
    method OnSelectedPageIndexChanged (line 462) | void OnSelectedPageIndexChanged(int oldValue)
    method OnOrientationChanged (line 495) | void OnOrientationChanged()
    method ApplyStyleToPipAndUpdateOrientation (line 531) | void ApplyStyleToPipAndUpdateOrientation(FrameworkElement pip, Style s...
    method UpdatePipOrientation (line 541) | void UpdatePipOrientation(Control pip)
    method OnNavigationButtonVisibilityChanged (line 553) | void OnNavigationButtonVisibilityChanged(ButtonVisibility visibility, ...
    method OnPreviousButtonClicked (line 566) | void OnPreviousButtonClicked(object sender, RoutedEventArgs e)
    method OnNextButtonClicked (line 572) | void OnNextButtonClicked(object sender, RoutedEventArgs e)
    method OnGotFocus (line 578) | void OnGotFocus(RoutedEventArgs args)
    method OnPipsAreaGettingFocus (line 600) | void OnPipsAreaGettingFocus(object sender, RoutedEventArgs args)
    method OnLostFocus (line 635) | protected override void OnLostFocus(RoutedEventArgs args)
    method OnMouseEnter (line 641) | protected override void OnMouseEnter(MouseEventArgs args)
    method OnMouseLeave (line 648) | protected override void OnMouseLeave(MouseEventArgs args)
    method IsOutOfControlBounds (line 666) | bool IsOutOfControlBounds(Point point)
    method OnPipsAreaBringIntoViewRequested (line 676) | void OnPipsAreaBringIntoViewRequested(object sender, RequestBringIntoV...
    method OnScrollViewerBringIntoViewRequested (line 684) | void OnScrollViewerBringIntoViewRequested(object sender, RequestBringI...
    method OnPropertyChanged (line 689) | void OnPropertyChanged(DependencyPropertyChangedEventArgs args)
    method GetSelectedItem (line 733) | UIElement GetSelectedItem()
    method UpdateSizeOfSetForElements (line 743) | void UpdateSizeOfSetForElements(int numberOfPages, int numberOfItems)
    method GetTemplateChild (line 759) | DependencyObject IControlProtected.GetTemplateChild(string childName)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/PipsPager.properties.cs
  class PipsPager (line 13) | public partial class PipsPager
    method OnMaxVisiblePipsPropertyChanged (line 30) | private static void OnMaxVisiblePipsPropertyChanged(DependencyObject s...
    method OnNextButtonStylePropertyChanged (line 52) | private static void OnNextButtonStylePropertyChanged(DependencyObject ...
    method OnNextButtonVisibilityPropertyChanged (line 74) | private static void OnNextButtonVisibilityPropertyChanged(DependencyOb...
    method OnNormalPipStylePropertyChanged (line 96) | private static void OnNormalPipStylePropertyChanged(DependencyObject s...
    method OnNumberOfPagesPropertyChanged (line 118) | private static void OnNumberOfPagesPropertyChanged(DependencyObject se...
    method OnOrientationPropertyChanged (line 140) | private static void OnOrientationPropertyChanged(DependencyObject send...
    method OnPreviousButtonStylePropertyChanged (line 162) | private static void OnPreviousButtonStylePropertyChanged(DependencyObj...
    method OnPreviousButtonVisibilityPropertyChanged (line 184) | private static void OnPreviousButtonVisibilityPropertyChanged(Dependen...
    method OnSelectedPageIndexPropertyChanged (line 206) | private static void OnSelectedPageIndexPropertyChanged(DependencyObjec...
    method OnSelectedPipStylePropertyChanged (line 228) | private static void OnSelectedPipStylePropertyChanged(DependencyObject...

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/PipsPagerAutomationPeer.cs
  class PipsPagerAutomationPeer (line 12) | internal class PipsPagerAutomationPeer : FrameworkElementAutomationPeer
    method PipsPagerAutomationPeer (line 14) | public PipsPagerAutomationPeer(PipsPager owner) :
    method GetClassNameCore (line 19) | protected override string GetClassNameCore()
    method GetNameCore (line 24) | protected override string GetNameCore()
    method GetAutomationControlTypeCore (line 39) | protected override AutomationControlType GetAutomationControlTypeCore()
    method RaiseSelectionChanged (line 44) | public void RaiseSelectionChanged(double oldIndex, double newIndex)

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/PipsPagerSelectedIndexChangedEventArgs.cs
  class PipsPagerSelectedIndexChangedEventArgs (line 9) | public class PipsPagerSelectedIndexChangedEventArgs : EventArgs

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/PipsPager/PipsPagerTemplateSettings.cs
  class PipsPagerTemplateSettings (line 12) | public class PipsPagerTemplateSettings : DependencyObject
    method PipsPagerTemplateSettings (line 14) | internal PipsPagerTemplateSettings()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ProgressBar/ProgressBar.cs
  class ProgressBar (line 23) | [TemplatePart(Name = s_LayoutRootName, Type = typeof(Grid))]
    method ProgressBar (line 31) | static ProgressBar()
    method ProgressBar (line 42) | public ProgressBar()
    method OnIsIndeterminatePropertyChanged (line 76) | private static void OnIsIndeterminatePropertyChanged(DependencyObject ...
    method OnShowErrorPropertyChanged (line 109) | private static void OnShowErrorPropertyChanged(DependencyObject sender...
    method OnShowPausedPropertyChanged (line 142) | private static void OnShowPausedPropertyChanged(DependencyObject sende...
    method OnCreateAutomationPeer (line 200) | protected override AutomationPeer OnCreateAutomationPeer()
    method OnApplyTemplate (line 205) | public override void OnApplyTemplate()
    method OnSizeChanged (line 221) | private void OnSizeChanged(object sender, SizeChangedEventArgs e)
    method OnValueChanged (line 228) | protected override void OnValueChanged(double oldValue, double newValue)
    method OnMinimumChanged (line 234) | protected override void OnMinimumChanged(double oldMinimum, double new...
    method OnMaximumChanged (line 240) | protected override void OnMaximumChanged(double oldMaximum, double new...
    method OnPaddingChanged (line 246) | private static void OnPaddingChanged(DependencyObject d, DependencyPro...
    method OnIndicatorWidthComponentChanged (line 251) | private void OnIndicatorWidthComponentChanged()
    method OnIsIndeterminatePropertyChanged (line 256) | private void OnIsIndeterminatePropertyChanged(DependencyPropertyChange...
    method OnShowPausedPropertyChanged (line 263) | private void OnShowPausedPropertyChanged(DependencyPropertyChangedEven...
    method OnShowErrorPropertyChanged (line 268) | private void OnShowErrorPropertyChanged(DependencyPropertyChangedEvent...
    method UpdateStates (line 273) | private void UpdateStates(bool useTransitions = true)
    method SetProgressBarIndicatorWidth (line 309) | private void SetProgressBarIndicatorWidth()
    method UpdateWidthBasedTemplateSettings (line 369) | private void UpdateWidthBasedTemplateSettings()
    method CoerceBrush (line 441) | private static object CoerceBrush(DependencyObject d, object baseValue)
    method OnActualThemeChanged (line 452) | private void OnActualThemeChanged(object sender, RoutedEventArgs e)
    method RefreshStates (line 457) | private void RefreshStates()
    method ReapplyIndeterminateStoryboard (line 463) | private void ReapplyIndeterminateStoryboard()

FILE: source/iNKORE.UI.WPF.Modern.Controls/Controls/Windows/ProgressBar/ProgressBarAutomationPeer.cs
  class ProgressBarAutomationPeer (line 15) | public class ProgressBarAutomationPeer : RangeBaseAutomationPeer, IRange...
    method ProgressBarAutomationPeer (line 23) | public ProgressBarAutomationPeer(ProgressBar owner)
    method GetPattern (line 29) | public override object GetPattern(PatternInterface patternInterface)
    method GetClassNameCore (line 45) | protected override string GetClassNameCore()
    method GetNameCore (line 50) | protected override string GetNameCore()
    method GetAut
Copy disabled (too large) Download .json
Condensed preview — 1827 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (17,592K chars).
[
  {
    "path": ".github/FUNDING.yml",
    "chars": 901,
    "preview": "# These are supported funding model platforms\n\npatreon: NotYoojun # Replace with a single Patreon username\ncustom: [\"ink"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/01. problem.yml",
    "chars": 5828,
    "preview": "name: 🐞 Problem Report\ndescription: Report a problem with iNKORE.UI.WPF.Modern library\ntitle: \"Your Title Here\"\nlabels: "
  },
  {
    "path": ".github/ISSUE_TEMPLATE/02. feature.yml",
    "chars": 4719,
    "preview": "name: 💡 Feature Request\ndescription: Suggest an idea, new feature or component for the library.\ntitle: \"Your Title Here\""
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "chars": 733,
    "preview": "blank_issues_enabled: false\ncontact_links:\n  - name: Documentation Bug / Feature\n    url: https://github.com/iNKORE-NET/"
  },
  {
    "path": ".github/workflows/build.yml",
    "chars": 1290,
    "preview": "name: Build Controls & Gallery\n\n# This workflow builds the iNKORE.UI.WPF.Modern.Controls and iNKORE.UI.WPF.Modern.Galler"
  },
  {
    "path": ".gitignore",
    "chars": 6640,
    "preview": "## Ignore Visual Studio temporary files, build results, and\n## files generated by popular Visual Studio add-ons.\n##\n## G"
  },
  {
    "path": ".vscode/settings.json",
    "chars": 61,
    "preview": "{\n    \"[yaml]\":\n    {\n        \"editor.wordWrap\": \"on\"\n    }\n}"
  },
  {
    "path": "Directory.Build.props",
    "chars": 141,
    "preview": "<Project>\n  <PropertyGroup>\n    <Product>iNKORE.UI.WPF.Modern</Product>\n    <LangVersion>latest</LangVersion>\n  </Prope"
  },
  {
    "path": "Directory.Build.targets",
    "chars": 4064,
    "preview": "<Project>\n  <PropertyGroup Condition=\"'$(PackageId)' != ''\">\n    <PackageLicenseExpression>MIT</PackageLicenseExpressio"
  },
  {
    "path": "LICENSE.md",
    "chars": 5312,
    "preview": "# iNKORE.UI.WPF.Modern Software License\n\n## License Terms\n\nBy using the software \"iNKORE.UI.WPF.Modern\" (hereinafter ref"
  },
  {
    "path": "README.md",
    "chars": 9136,
    "preview": "<a href=\"https://docs.inkore.net/ui-wpf-modern/introduction\">\r\n  <img src=\"https://github.com/iNKORE-NET/UI.WPF.Modern/b"
  },
  {
    "path": "assets/others/FluentSystemIcons-Filled.json",
    "chars": 376903,
    "preview": "{\n  \"ic_fluent_access_time_24_filled\": 61697,\n  \"ic_fluent_accessibility_16_filled\": 61698,\n  \"ic_fluent_accessibility_2"
  },
  {
    "path": "assets/others/FluentSystemIcons-Regular.json",
    "chars": 376661,
    "preview": "{\n  \"ic_fluent_access_time_24_regular\": 61697,\n  \"ic_fluent_accessibility_16_regular\": 61698,\n  \"ic_fluent_accessibility"
  },
  {
    "path": "assets/others/Segoe Fluent Icons.txt",
    "chars": 45517,
    "preview": "GlobalNavButton\te700\tGlobalNavButton\nWifi\te701\tWifi\nBluetooth\te702\tBluetooth\nConnect\te703\tConnect\nInternetSharing\te704\tI"
  },
  {
    "path": "docs/index.md",
    "chars": 270,
    "preview": "# Documentation\n\nWe're building documentation for the project. This is a work in progress.\n\nTo preview the documentation"
  },
  {
    "path": "docs/promotions.md",
    "chars": 5814,
    "preview": "\n# Spread the Word!\n\nHo do you like this project so far? If this project is useful to you, please consider giving it a s"
  },
  {
    "path": "iNKORE.UI.WPF.Modern.sln",
    "chars": 31636,
    "preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio Version 17\nVisualStudioVersion = 17.2.3231"
  },
  {
    "path": "installer/Gallery.aip",
    "chars": 142360,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<DOCUMENT Type=\"Advanced Installer\" CreateVersion=\"20.4\" version"
  },
  {
    "path": "samples/Acrylic10Example/Acrylic10Example.csproj",
    "chars": 519,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/Acrylic10Example/App.xaml",
    "chars": 680,
    "preview": "<Application x:Class=\"Acrylic10Example.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentati"
  },
  {
    "path": "samples/Acrylic10Example/App.xaml.cs",
    "chars": 234,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace Acrylic10Example\n{\n    /// <summary>\n  "
  },
  {
    "path": "samples/Acrylic10Example/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/Acrylic10Example/MainWindow.xaml",
    "chars": 1166,
    "preview": "<Window x:Class=\"Acrylic10Example.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\""
  },
  {
    "path": "samples/Acrylic10Example/MainWindow.xaml.cs",
    "chars": 795,
    "preview": "using iNKORE.UI.WPF.Modern.Controls.Helpers;\nusing iNKORE.UI.WPF.Modern.Controls.Primitives;\nusing iNKORE.UI.WPF.Modern"
  },
  {
    "path": "samples/ButtonsOnTitlebar/App.xaml",
    "chars": 621,
    "preview": "<Application x:Class=\"ButtonsOnTitlebar.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentat"
  },
  {
    "path": "samples/ButtonsOnTitlebar/App.xaml.cs",
    "chars": 235,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace ButtonsOnTitlebar\n{\n    /// <summary>\n "
  },
  {
    "path": "samples/ButtonsOnTitlebar/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/ButtonsOnTitlebar/ButtonsOnTitlebar.csproj",
    "chars": 417,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/ButtonsOnTitlebar/MainWindow.xaml",
    "chars": 3003,
    "preview": "<Window x:Class=\"ButtonsOnTitlebar.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  },
  {
    "path": "samples/ButtonsOnTitlebar/MainWindow.xaml.cs",
    "chars": 541,
    "preview": "using System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Data;\nusing System.Windows"
  },
  {
    "path": "samples/ExamplePhotoTaker/App.xaml",
    "chars": 680,
    "preview": "<Application x:Class=\"ExamplePhotoTaker.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentat"
  },
  {
    "path": "samples/ExamplePhotoTaker/App.xaml.cs",
    "chars": 235,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace ExamplePhotoTaker\n{\n    /// <summary>\n "
  },
  {
    "path": "samples/ExamplePhotoTaker/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/ExamplePhotoTaker/ExamplePhotoTaker.csproj",
    "chars": 874,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/ExamplePhotoTaker/MainWindow.xaml",
    "chars": 1966,
    "preview": "<Window x:Class=\"ExamplePhotoTaker.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  },
  {
    "path": "samples/ExamplePhotoTaker/MainWindow.xaml.cs",
    "chars": 2069,
    "preview": "using iNKORE.UI.WPF.Modern.Media.Animation;\nusing Microsoft.Win32;\nusing System.Collections.ObjectModel;\nusing System.D"
  },
  {
    "path": "samples/FlyoutExample/App.xaml",
    "chars": 682,
    "preview": "<Application x:Class=\"FlyoutExample.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\""
  },
  {
    "path": "samples/FlyoutExample/App.xaml.cs",
    "chars": 231,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace FlyoutExample\n{\n    /// <summary>\n    /"
  },
  {
    "path": "samples/FlyoutExample/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/FlyoutExample/FlyoutExample.csproj",
    "chars": 596,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/FlyoutExample/MainWindow.xaml",
    "chars": 5141,
    "preview": "<Window x:Class=\"FlyoutExample.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n  "
  },
  {
    "path": "samples/FlyoutExample/MainWindow.xaml.cs",
    "chars": 879,
    "preview": "using System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Data;\nusing System.Windows"
  },
  {
    "path": "samples/FlyoutExample/完整源码见 Github 仓库.txt",
    "chars": 85,
    "preview": "https://github.com/iNKORE-Public/UI.WPF.Modern/tree/main/source/samples/FlyoutExample"
  },
  {
    "path": "samples/NavigationViewExample/App.xaml",
    "chars": 689,
    "preview": "<Application x:Class=\"NavigationViewExample.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/prese"
  },
  {
    "path": "samples/NavigationViewExample/App.xaml.cs",
    "chars": 239,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace NavigationViewExample\n{\n    /// <summar"
  },
  {
    "path": "samples/NavigationViewExample/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/NavigationViewExample/MainWindow.xaml",
    "chars": 1851,
    "preview": "<Window x:Class=\"NavigationViewExample.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presenta"
  },
  {
    "path": "samples/NavigationViewExample/MainWindow.xaml.cs",
    "chars": 1711,
    "preview": "using iNKORE.UI.WPF.Modern.Controls;\nusing System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing Syst"
  },
  {
    "path": "samples/NavigationViewExample/NavigationViewExample.csproj",
    "chars": 596,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/NavigationViewExample/Pages/AppsPage.xaml",
    "chars": 719,
    "preview": "<ui:Page x:Class=\"NavigationViewExample.Pages.AppsPage\"\n      xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/prese"
  },
  {
    "path": "samples/NavigationViewExample/Pages/AppsPage.xaml.cs",
    "chars": 690,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "samples/NavigationViewExample/Pages/GamesPage.xaml",
    "chars": 722,
    "preview": "<ui:Page x:Class=\"NavigationViewExample.Pages.GamesPage\"\n      xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/pres"
  },
  {
    "path": "samples/NavigationViewExample/Pages/GamesPage.xaml.cs",
    "chars": 694,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "samples/NavigationViewExample/Pages/HomePage.xaml",
    "chars": 719,
    "preview": "<ui:Page x:Class=\"NavigationViewExample.Pages.HomePage\"\n      xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/prese"
  },
  {
    "path": "samples/NavigationViewExample/Pages/HomePage.xaml.cs",
    "chars": 690,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "samples/NoAppXamlTest/AssemblyInfo.cs",
    "chars": 595,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None, //where theme specific resource dictio"
  },
  {
    "path": "samples/NoAppXamlTest/MainWindow.xaml",
    "chars": 961,
    "preview": "<Window x:Class=\"NoAppXamlTest.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n  "
  },
  {
    "path": "samples/NoAppXamlTest/MainWindow.xaml.cs",
    "chars": 635,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "samples/NoAppXamlTest/NoAppXamlTest.csproj",
    "chars": 487,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/NoAppXamlTest/Program.cs",
    "chars": 307,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
  },
  {
    "path": "samples/SettingsNavigationTest/App.config",
    "chars": 180,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n<configuration>\n    <startup> \n        <supportedRuntime version=\"v4.0\" sku=\".N"
  },
  {
    "path": "samples/SettingsNavigationTest/App.xaml",
    "chars": 628,
    "preview": "<Application x:Class=\"SettingsNavigationTest.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/pres"
  },
  {
    "path": "samples/SettingsNavigationTest/App.xaml.cs",
    "chars": 797,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Configuration;\nusing System.Data;\nusing System.Linq;\nusing"
  },
  {
    "path": "samples/SettingsNavigationTest/AppearancePage.xaml",
    "chars": 1633,
    "preview": "<Page x:Class=\"SettingsNavigationTest.AppearancePage\"\n      xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/present"
  },
  {
    "path": "samples/SettingsNavigationTest/AppearancePage.xaml.cs",
    "chars": 599,
    "preview": "using iNKORE.UI.WPF.Modern.Media.Animation;\n\nnamespace SettingsNavigationTest\n{\n    /// <summary>\n    /// AppearancePag"
  },
  {
    "path": "samples/SettingsNavigationTest/MainPage.xaml",
    "chars": 7370,
    "preview": "<Page x:Class=\"SettingsNavigationTest.MainPage\"\n      xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\""
  },
  {
    "path": "samples/SettingsNavigationTest/MainPage.xaml.cs",
    "chars": 594,
    "preview": "using iNKORE.UI.WPF.Modern.Media.Animation;\n\nnamespace SettingsNavigationTest\n{\n    /// <summary>\n    /// MainPage.xaml"
  },
  {
    "path": "samples/SettingsNavigationTest/MainWindow.xaml",
    "chars": 1138,
    "preview": "<Window x:Class=\"SettingsNavigationTest.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/present"
  },
  {
    "path": "samples/SettingsNavigationTest/MainWindow.xaml.cs",
    "chars": 594,
    "preview": "using iNKORE.UI.WPF.Modern.Media.Animation;\nusing System.Windows;\nusing Page = System.Windows.Controls.Page;\n\nnamespace"
  },
  {
    "path": "samples/SettingsNavigationTest/Properties/AssemblyInfo.cs",
    "chars": 1543,
    "preview": "using System.Reflection;\nusing System.Resources;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropSer"
  },
  {
    "path": "samples/SettingsNavigationTest/Properties/Resources.Designer.cs",
    "chars": 2463,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     此代码由工具生成。\n/"
  },
  {
    "path": "samples/SettingsNavigationTest/Properties/Resources.resx",
    "chars": 5494,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n  <!-- \n    Microsoft ResX Schema \n    \n    Version 2.0\n    \n    The prim"
  },
  {
    "path": "samples/SettingsNavigationTest/Properties/Settings.Designer.cs",
    "chars": 1077,
    "preview": "//------------------------------------------------------------------------------\n// <auto-generated>\n//     This code w"
  },
  {
    "path": "samples/SettingsNavigationTest/Properties/Settings.settings",
    "chars": 193,
    "preview": "<?xml version='1.0' encoding='utf-8'?>\n<SettingsFile xmlns=\"uri:settings\" CurrentProfile=\"(Default)\">\n  <Profiles>\n    "
  },
  {
    "path": "samples/SettingsNavigationTest/SettingsNavigationTest.csproj",
    "chars": 550,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\t<PropertyGroup>\n\t\t<OutputType>WinExe</OutputType>\n\t\t<TargetFramework>net6.0-windows<"
  },
  {
    "path": "samples/SettingsNavigationTest/packages.config",
    "chars": 4228,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<packages>\n  <package id=\"Costura.Fody\" version=\"5.7.0\" targetFramework=\"net48\" "
  },
  {
    "path": "samples/StarterKit/App.xaml",
    "chars": 668,
    "preview": "<Application x:Class=\"StarterKit.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n  "
  },
  {
    "path": "samples/StarterKit/App.xaml.cs",
    "chars": 228,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace StarterKit\n{\n    /// <summary>\n    /// "
  },
  {
    "path": "samples/StarterKit/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/StarterKit/MainWindow.xaml",
    "chars": 1138,
    "preview": "<Window x:Class=\"StarterKit.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n     "
  },
  {
    "path": "samples/StarterKit/MainWindow.xaml.cs",
    "chars": 534,
    "preview": "using System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Data;\nusing System.Windows"
  },
  {
    "path": "samples/StarterKit/StarterKit.csproj",
    "chars": 596,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/TransparentNavigationViewExample/App.xaml",
    "chars": 710,
    "preview": "<Application x:Class=\"TransparentNavigationViewExample.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006"
  },
  {
    "path": "samples/TransparentNavigationViewExample/App.xaml.cs",
    "chars": 250,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace TransparentNavigationViewExample\n{\n    "
  },
  {
    "path": "samples/TransparentNavigationViewExample/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/TransparentNavigationViewExample/MainWindow.xaml",
    "chars": 2443,
    "preview": "<Window x:Class=\"TransparentNavigationViewExample.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xa"
  },
  {
    "path": "samples/TransparentNavigationViewExample/MainWindow.xaml.cs",
    "chars": 556,
    "preview": "using System.Text;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Data;\nusing System.Windows"
  },
  {
    "path": "samples/TransparentNavigationViewExample/TransparentNavigationViewExample.csproj",
    "chars": 457,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/WindowExample/App.xaml",
    "chars": 673,
    "preview": "<Application x:Class=\"WindowExample.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\""
  },
  {
    "path": "samples/WindowExample/App.xaml.cs",
    "chars": 231,
    "preview": "using System.Configuration;\nusing System.Data;\nusing System.Windows;\n\nnamespace WindowExample\n{\n    /// <summary>\n    /"
  },
  {
    "path": "samples/WindowExample/AssemblyInfo.cs",
    "chars": 634,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None,            //where theme specific reso"
  },
  {
    "path": "samples/WindowExample/MainWindow.xaml",
    "chars": 8012,
    "preview": "<Window x:Class=\"WindowExample.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n  "
  },
  {
    "path": "samples/WindowExample/MainWindow.xaml.cs",
    "chars": 4610,
    "preview": "using iNKORE.UI.WPF.Modern.Controls.Helpers;\nusing iNKORE.UI.WPF.Modern.Controls.Primitives;\nusing iNKORE.UI.WPF.Modern"
  },
  {
    "path": "samples/WindowExample/WindowExample.csproj",
    "chars": 404,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/WpfApp1/App.xaml",
    "chars": 685,
    "preview": "<Application x:Class=\"WpfApp1.App\"\n             xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n     "
  },
  {
    "path": "samples/WpfApp1/App.xaml.cs",
    "chars": 321,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Configuration;\nusing System.Data;\nusing System.Linq;\nusing"
  },
  {
    "path": "samples/WpfApp1/AssemblyInfo.cs",
    "chars": 595,
    "preview": "using System.Windows;\n\n[assembly: ThemeInfo(\n    ResourceDictionaryLocation.None, //where theme specific resource dictio"
  },
  {
    "path": "samples/WpfApp1/MainWindow.xaml",
    "chars": 1986,
    "preview": "<Window x:Class=\"WpfApp1.MainWindow\"\n        xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n        "
  },
  {
    "path": "samples/WpfApp1/MainWindow.xaml.cs",
    "chars": 6370,
    "preview": "using iNKORE.UI.WPF.Modern;\nusing iNKORE.UI.WPF.Modern.Common.IconKeys;\nusing iNKORE.UI.WPF.Modern.Controls;\nusing iNKO"
  },
  {
    "path": "samples/WpfApp1/WpfApp1 - Backup.csproj",
    "chars": 676,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "samples/WpfApp1/WpfApp1.csproj",
    "chars": 755,
    "preview": "<Project Sdk=\"Microsoft.NET.Sdk\">\n\n  <PropertyGroup>\n    <OutputType>WinExe</OutputType>\n    <TargetFramework>net6.0-wi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/ColorPaletteResources.cs",
    "chars": 13897,
    "preview": "using iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing System.Collections;\nusing System.Collections.Generic;\nusing Sys"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/AnimatedIconSource.cs",
    "chars": 5716,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/BitmapIconSource.cs",
    "chars": 2876,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/Converters/BackdropIsSupportedConverter.cs",
    "chars": 1334,
    "preview": "using iNKORE.UI.WPF.Modern.Helpers.Styles;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing Sys"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/Converters/IconSourceToIconElementConverter.cs",
    "chars": 698,
    "preview": "using iNKORE.UI.WPF.Modern.Controls;\nusing System;\nusing System.Collections.Generic;\nusing System.Globalization;\nusing "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/Converters/LocalizationConverter.cs",
    "chars": 893,
    "preview": "using System;\nusing System.Globalization;\nusing System.Windows.Data;\n\nnamespace iNKORE.UI.WPF.Modern.Common.Converters\n"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/EventRevoker.cs",
    "chars": 1056,
    "preview": "using System;\n\nnamespace iNKORE.UI.WPF.Modern.Common\n{\n    internal abstract class EventRevoker<TSource, TDelegate>\n   "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/FontIconSource.cs",
    "chars": 6624,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/FluentSystemIcons.Filled.cs",
    "chars": 981771,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/FluentSystemIcons.Regular.cs",
    "chars": 980667,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/FluentSystemIcons.cs",
    "chars": 1197,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/FontDictionary.cs",
    "chars": 2460,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/SegoeFluentIcons.Regular.cs",
    "chars": 111727,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\n\nna"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconKeys/SegoeFluentIcons.cs",
    "chars": 781,
    "preview": "using iNKORE.UI.WPF.Modern.Controls;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Te"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/IconSource.cs",
    "chars": 2776,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/ImageIconSource.cs",
    "chars": 1792,
    "preview": "using iNKORE.UI.WPF.Modern.Controls;\nusing System;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Wi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/PasswordRevealMode.cs",
    "chars": 700,
    "preview": "namespace iNKORE.UI.WPF.Modern.Common\n{\n    /// <summary>\n    /// Defines constants that specify the password reveal be"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/PathIconSource.cs",
    "chars": 1781,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/RatingItemFontInfo.cs",
    "chars": 6116,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/RatingItemInfo.cs",
    "chars": 702,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/RatingItemPathInfo.cs",
    "chars": 3279,
    "preview": "using System.Windows;\nusing System.Windows.Media;\n\nnamespace iNKORE.UI.WPF.Modern.Common\n{\n    public class RatingItemP"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/ResourceAccessor.cs",
    "chars": 16191,
    "preview": "using System;\nusing System.Reflection;\nusing System.Resources;\nusing System.Windows;\nusing System.Windows.Automation;\nu"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/ShadowAssist.cs",
    "chars": 1273,
    "preview": "using System.Windows.Media;\nusing System.Windows;\n\nnamespace iNKORE.UI.WPF.Modern.Common\n{\n    public static class Shad"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/SimpleVisualStateManager.cs",
    "chars": 11306,
    "preview": "// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/SymbolIconSource.cs",
    "chars": 1929,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/TypedEventHandler.cs",
    "chars": 485,
    "preview": "namespace iNKORE.UI.WPF.Modern.Common\n{\n    /// <summary>\n    /// Represents a method that handles general events.\n    "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/UIApplication.cs",
    "chars": 2660,
    "preview": "using iNKORE.UI.WPF.Modern.Controls;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Te"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/VisualStateGroupHelper.cs",
    "chars": 4542,
    "preview": "// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Common/VisualStates.cs",
    "chars": 2006,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AcrylicElement.cs",
    "chars": 5826,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Globalization;\nusing System.Linq;\nusing System.Text;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AcrylicPanel.cs",
    "chars": 8836,
    "preview": "// Ported from https://github.com/sourcechord/FluentWPF/blob/master/FluentWPF/AcrylicPanel.cs\n\nusing iNKORE.UI.WPF.Mode"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AcrylicPanel.xaml",
    "chars": 8815,
    "preview": "<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.m"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AnimatedBackVisualSource.cs",
    "chars": 1130,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading.Tasks;\nusi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AnimatedIcon.cs",
    "chars": 12051,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing S"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AnimatedVisualSource.cs",
    "chars": 3533,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System;\nusing System.Collections.Generic;\nusing System.ComponentModel;\nusing S"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/AnimatedVisualSource.xaml",
    "chars": 3506,
    "preview": "<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.m"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/BitmapIcon.cs",
    "chars": 6087,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Wind"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/ContentPresenterEx.cs",
    "chars": 9769,
    "preview": "using System.ComponentModel;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Documents;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/DropShadowPanel.cs",
    "chars": 12442,
    "preview": "using iNKORE.UI.WPF.Converters;\nusing iNKORE.UI.WPF.Modern.Common.Converters;\nusing System;\nusing System.Collections;\nu"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/ElevationBorder.cs",
    "chars": 8730,
    "preview": "using iNKORE.UI.WPF.Modern.Media.Utils;\nusing System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Extensions.cs",
    "chars": 1725,
    "preview": "using System;\nusing System.Windows.Navigation;\n\nnamespace iNKORE.UI.WPF.Modern.Controls\n{\n    public static class Exten"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/FontIcon.cs",
    "chars": 12429,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing iNKORE.UI.WPF.Modern.Common.IconKeys;\nusing System;\nusing System.ComponentMode"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/FontIconFallback.cs",
    "chars": 996,
    "preview": "using System.ComponentModel;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Media;\n\nnamespac"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Frame.cs",
    "chars": 22761,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing iNKORE.UI.WPF.Modern.Media.Animation;\nusin"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Frame.xaml",
    "chars": 1839,
    "preview": "<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.m"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/CalendarHelper.cs",
    "chars": 1880,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Controls.Primitives;\nusing System.Windows.Inp"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ClipHelper.cs",
    "chars": 2869,
    "preview": "using iNKORE.UI.WPF.Converters;\nusing iNKORE.UI.WPF.Modern.Common.Converters;\nusing System;\nusing System.Collections.Ge"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ColumnDefinitionHelper.cs",
    "chars": 1376,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ComboBoxHelper.cs",
    "chars": 7142,
    "preview": "// Copyright (c) Microsoft Corporation. All rights reserved.\n// Licensed under the MIT License. See LICENSE in the proj"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ControlHelper.cs",
    "chars": 15213,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Media;\n\nnamespace iNKORE.UI.WPF.Modern.Contro"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/CustomPopupPlacementHelper.cs",
    "chars": 8488,
    "preview": "using iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing System.Windows;\nusing System.Windows.Controls.Primitives;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/DataGridHelper.cs",
    "chars": 16080,
    "preview": "using System.Collections.Specialized;\nusing System.Diagnostics;\nusing System.Windows;\nusing System.Windows.Controls;\nus"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/DataGridRowHelper.cs",
    "chars": 3074,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/DatePickerHelper.cs",
    "chars": 3790,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing System.Globalization;\nusing System"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/DecoratorHelper.cs",
    "chars": 958,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ExpanderAnimationsHelper.cs",
    "chars": 11465,
    "preview": "using System;\nusing System.Windows.Controls;\nusing System.Windows;\nusing System.Windows.Media;\nusing System.Windows.Med"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ExpanderHelper.cs",
    "chars": 5943,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing System.Collections.Generic;\nusing "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/FocusVisualHelper.cs",
    "chars": 24767,
    "preview": "// Licensed to the .NET Foundation under one or more agreements.\n// The .NET Foundation licenses this file to you under"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/FullscreenHelper.cs",
    "chars": 26066,
    "preview": "// Ported from https://github.com/lindexi/lindexi_gd/blob/master/KenafearcuweYemjecahee/FullscreenHelper.cs\n\nusing Syst"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/HyperlinkHelper.cs",
    "chars": 2886,
    "preview": "using System.Windows;\nusing System.Windows.Documents;\nusing System.Windows.Input;\n\nnamespace iNKORE.UI.WPF.Modern.Contr"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ListViewHelper.cs",
    "chars": 5377,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/MultiSelectHelper.cs",
    "chars": 1733,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/OpeningAnimationHelper.cs",
    "chars": 1762,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System.Windows;\nusing System.Windows.Media.Anima"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/PasswordBoxHelper.cs",
    "chars": 10627,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Common;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System.Window"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/PivotHelper.cs",
    "chars": 3812,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/PressHelper.cs",
    "chars": 3409,
    "preview": "using System.Windows;\nusing System.Windows.Input;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public static "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/RichTextBoxHelper.cs",
    "chars": 2998,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Documents;\n\nnamespace iNKORE.UI.WPF.Modern.Co"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/RowDefinitionHelper.cs",
    "chars": 1348,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ScrollBarHelper.cs",
    "chars": 6068,
    "preview": "using iNKORE.UI.WPF.Modern.Controls.Primitives;\nusing System.Windows;\nusing System.Windows.Controls.Primitives;\nusing S"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ScrollBarThumbHelper.cs",
    "chars": 725,
    "preview": "using System.Windows;\nusing System.Windows.Controls.Primitives;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ScrollViewerHelper.cs",
    "chars": 2601,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/SliderAutoToolTipHelper.cs",
    "chars": 6460,
    "preview": "using iNKORE.UI.WPF.Modern.Helpers;\nusing System.Diagnostics;\nusing System.Windows;\nusing System.Windows.Controls;\nusin"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TabControlHelper.cs",
    "chars": 19195,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Common;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TabItemHelper.cs",
    "chars": 13458,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Common;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TextBlockHelper.cs",
    "chars": 3180,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Linq;\nusing System.Text;\nusing System.Threading;\nusing Sys"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TextBoxHelper.cs",
    "chars": 5305,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Controls.Primitives;\n\nnamespace iNKORE.UI.WPF"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TextControlContentHostHelper.cs",
    "chars": 875,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Helpers\n{\n    public stat"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/TreeViewItemHelper.cs",
    "chars": 13723,
    "preview": "using System;\nusing System.ComponentModel;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Me"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/ValidationHelper.cs",
    "chars": 1658,
    "preview": "using System.Diagnostics;\nusing System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI.WPF.Modern.Controls"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Helpers/WindowHelper.cs",
    "chars": 23250,
    "preview": "using iNKORE.UI.WPF.Modern.Controls.Primitives;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing iNKORE.UI.WPF.Helpers;\nusing "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/IconAndText.cs",
    "chars": 1912,
    "preview": "using iNKORE.UI.WPF.Controls;\nusing iNKORE.UI.WPF.Modern.Common.IconKeys;\nusing System;\nusing System.Collections.Generi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/IconAndText.xaml",
    "chars": 2596,
    "preview": "<ResourceDictionary xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n                    xmlns:local=\""
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/IconElement.cs",
    "chars": 6775,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System;\nusing System.ComponentModel;\nusing System.Windows;\nusing System.Window"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/ImageIcon.cs",
    "chars": 2596,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Wind"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/ListViewBaseHeaderItem.cs",
    "chars": 2236,
    "preview": "using iNKORE.UI.WPF.Modern.Controls.Helpers;\nusing System.Windows;\nusing System.Windows.Controls;\n\nnamespace iNKORE.UI."
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/ListViewHeaderItem.cs",
    "chars": 624,
    "preview": "using System.Windows;\n\nnamespace iNKORE.UI.WPF.Modern.Controls\n{\n    /// <summary>\n    /// Represents items in the head"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Page.cs",
    "chars": 4830,
    "preview": "using System;\nusing System.Windows;\nusing System.Windows.Media;\nusing System.Windows.Navigation;\n\nnamespace iNKORE.UI.W"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Page.xaml",
    "chars": 766,
    "preview": "<ResourceDictionary\n    xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\n    xmlns:x=\"http://schemas.m"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/PathIcon.cs",
    "chars": 3407,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System.Windows;\nusing System.Windows.Media;\nusing System.Windows.Shapes;\n\nname"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/AutoPanningMode.cs",
    "chars": 4094,
    "preview": "using System;\nusing System.Collections.Generic;\nusing System.Globalization;\nusing System.Linq;\nusing System.Text;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/BackRequestedEventArgs.cs",
    "chars": 468,
    "preview": "using System.Windows;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Primitives\n{\n    /// <summary>\n    /// Provides event da"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/BindingProxy.cs",
    "chars": 647,
    "preview": "using System.Windows;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Primitives\n{\n    public class BindingProxy : Freezable\n "
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/CoreApplicationViewTitleBar.cs",
    "chars": 7779,
    "preview": "using iNKORE.UI.WPF.Modern.Common;\nusing System.Windows;\nusing System.Windows.Data;\n\nnamespace iNKORE.UI.WPF.Modern.Con"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/DataGridCellPresenter.cs",
    "chars": 10388,
    "preview": "using System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Media;\n\nnamespace iNKORE.UI.WPF.Modern.Contro"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/DebugVisualStateManager.cs",
    "chars": 766,
    "preview": "#if DEBUG\nusing System.Diagnostics;\nusing System.Windows;\n\nnamespace iNKORE.UI.WPF.Modern.Controls.Primitives\n{\n    pub"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/MaximizedWindowFixer.cs",
    "chars": 13426,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing iNKORE.UI.WPF.Modern.Native;\nusing System;\nusing"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/MenuPopup.cs",
    "chars": 2063,
    "preview": "using System;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Controls.Primitives;\nusing Syst"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/PanelHelper.cs",
    "chars": 3158,
    "preview": "using iNKORE.UI.WPF.Helpers;\nusing iNKORE.UI.WPF.Modern.Helpers;\nusing System.ComponentModel;\nusing System.Windows;\nusi"
  },
  {
    "path": "source/iNKORE.UI.WPF.Modern/Controls/Primitives/PivotHeaderScrollViewer.cs",
    "chars": 13155,
    "preview": "using System;\nusing System.Windows;\nusing System.Windows.Controls;\nusing System.Windows.Input;\n\nnamespace iNKORE.UI.WPF"
  }
]

// ... and 1627 more files (download for full content)

About this extraction

This page contains the full source code of the InkoreStudios/UI.WPF.Modern GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1827 files (16.0 MB), approximately 4.3M tokens, and a symbol index with 6191 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!