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