├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.yaml └── workflows │ └── library.nuget.yml ├── .gitignore ├── LICENSE ├── README.md ├── Settings.XamlStyler ├── Wpf.Ui.Violeta.sln ├── Wpf.Ui.Violeta.slnx ├── branding ├── geometric_splash.psd ├── microsoft-fluent-resources.psd ├── wpfui.ico ├── wpfui.png ├── wpfui.psd └── wpfui_full.png └── src ├── Wpf.Ui.Test ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── GlobalUsing.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Resources │ ├── Images │ │ ├── ProfilePicture.ico │ │ └── Tiara.png │ └── Strings │ │ └── Sample.md ├── SecondWindow.xaml ├── SecondWindow.xaml.cs ├── TrayIconManager.cs └── Wpf.Ui.Test.csproj └── Wpf.Ui.Violeta ├── Appearance ├── I18N.cs ├── ResourceDictionaryManager.cs ├── SystemMenuThemeManager.cs └── ThemeManager.cs ├── AssemblyInfo.cs ├── Controls ├── BitmapIcon │ └── BitmapIcon.cs ├── Button │ └── Button.xaml ├── CachedImage │ ├── CachedImage.cs │ └── FileCacheForImage.cs ├── CaptionButton │ ├── CaptionButton.cs │ ├── CaptionButton.xaml │ ├── CaptionButtonColorDictionary.cs │ ├── CaptionButtonColors.Windows10.xaml │ ├── CaptionButtonColors.Windows11.xaml │ ├── CaptionButtonHandler.cs │ ├── CaptionButtonKind.cs │ ├── CaptionCloseButton.cs │ ├── CaptionHelpButton.cs │ ├── CaptionMaximizeButton.cs │ └── CaptionMinimizeButton.cs ├── CaptionButtonBar │ ├── CaptionButtonBar.cs │ └── CaptionButtonBar.xaml ├── ContentDialog │ ├── ContentDialog.cs │ ├── ContentDialog.xaml │ ├── ContentDialogButton.cs │ ├── ContentDialogButtonClickDeferral.cs │ ├── ContentDialogButtonClickEventArgs.cs │ ├── ContentDialogClosedEventArgs.cs │ ├── ContentDialogClosingDeferral.cs │ ├── ContentDialogClosingEventArgs.cs │ ├── ContentDialogHostService.cs │ ├── ContentDialogOpenedEventArgs.cs │ ├── ContentDialogPlacement.cs │ ├── ContentDialogResult.cs │ └── CornerRadiusFilterConverter.cs ├── ContentWindow │ ├── ContentWindow.cs │ ├── ContentWindow.xaml │ ├── ContentWindowControl.cs │ ├── ContentWindowResult.cs │ └── ContentWindowResultEventArgs.cs ├── DataGrid │ ├── DataGrid.xaml │ └── LegacyDataGrid.xaml ├── ExceptionReport │ ├── ExceptionReport.cs │ ├── ExceptionWindow.xaml │ └── ExceptionWindow.xaml.cs ├── Expander │ └── Expander.xaml ├── Flyout │ └── FlyoutService.cs ├── FontIcon │ ├── CustomFontSymbols.cs │ ├── FontIconFallback.cs │ ├── FontIconFallback.xaml │ └── FontSymbols.cs ├── ImageView │ ├── AnimatedImage.cs │ ├── AnimationProvider.cs │ ├── BitmapImageProvider.cs │ ├── ImageView.xaml │ └── ImageView.xaml.cs ├── Layout │ ├── AutoGrid.cs │ ├── Border.cs │ ├── Drawer.cs │ ├── Drawer.xaml │ ├── Grid.cs │ ├── StackPanel.cs │ └── WrapPanel.cs ├── MessageBox │ ├── MessageBox.Image.cs │ ├── MessageBox.cs │ ├── MessageBoxButtonClickDeferral.cs │ ├── MessageBoxButtonClickEventArgs.cs │ ├── MessageBoxClosedEventArgs.cs │ ├── MessageBoxClosingDeferral.cs │ ├── MessageBoxClosingEventArgs.cs │ ├── MessageBoxContentTemplateSelector.cs │ ├── MessageBoxDialog.cs │ ├── MessageBoxDialog.xaml │ ├── MessageBoxIcon.cs │ ├── MessageBoxIconConverter.cs │ ├── MessageBoxIconExtensions.cs │ ├── MessageBoxIconForegroundConverter.cs │ ├── MessageBoxImageExtensions.cs │ ├── MessageBoxOpenedEventArgs.cs │ ├── MessageBoxSymbolGlyph.cs │ └── MessageBoxTemplateSettings.cs ├── PendingBox │ ├── IPendingHandler.cs │ ├── Loading.cs │ ├── Loading.xaml │ ├── PendingBox.cs │ ├── PendingBoxDialog.cs │ ├── PendingBoxDialog.xaml │ └── PendingHandler.cs ├── PersonPicture │ ├── InitialsGenerator.cs │ ├── PersonPicture.cs │ ├── PersonPicture.properties.cs │ ├── PersonPicture.xaml │ ├── PersonPictureAutomationPeer.cs │ └── PersonPictureTemplateSettings.cs ├── Primitives │ ├── ContentPresenterEx.cs │ ├── CustomPopupPlacementHelper.cs │ ├── IconElementEx.cs │ ├── MenuItemGroup.cs │ ├── PopupPositioner.cs │ ├── RadioButtonGroup.cs │ ├── SimpleVisualStateManager.cs │ ├── ThemeShadowChrome.cs │ ├── ToggleButtonGroup.cs │ ├── VisualStateGroupListener.cs │ └── VisualTree.cs ├── ShellWindow │ ├── ShellWindow.cs │ └── ShellWindow.xaml ├── SmoothScrollViewer │ ├── SmoothScrollViewer.cs │ └── SmoothScrollViewer.xaml ├── Splash │ ├── Splash.cs │ ├── SplashConfig.cs │ ├── SplashWindow.xaml │ └── SplashWindow.xaml.cs ├── TextBox │ └── TextBox.xaml ├── TitleBar │ ├── NativeLikeTitleBar.cs │ └── NativeLikeTitleBar.xaml ├── TitleBarButton │ ├── TitleBarButton.cs │ └── TitleBarButton.xaml ├── Toast │ ├── Toast.cs │ ├── ToastConfig.cs │ ├── ToastControl.xaml │ ├── ToastControl.xaml.cs │ ├── ToastIcon.cs │ ├── ToastIconConverter.cs │ ├── ToastIconForegroundConverter.cs │ ├── ToastIconVisibilityConverter.cs │ └── ToastLocation.cs ├── TreeListView │ ├── TreeLevelToIndentConverter.cs │ ├── TreeListView.cs │ ├── TreeListView.xaml │ ├── TreeListViewItem.cs │ └── TreeRowExpander.cs └── TreeModelListView │ ├── ITreeModel.cs │ ├── TreeModelCanExpandConverter.cs │ ├── TreeModelCollection{T}.cs │ ├── TreeModelLevelToIndentConverter.cs │ ├── TreeModelListView.cs │ ├── TreeModelListView.xaml │ ├── TreeModelListViewItem.cs │ ├── TreeModelNode.cs │ ├── TreeModelObject{T}.cs │ ├── TreeModelRowCollection{T}.cs │ └── TreeModelRowExpander.cs ├── Converters ├── FileSizeStringConverter.cs └── PathToIconConverter.cs ├── GlobalSuppressions.cs ├── Markup ├── ControlsDictionary.cs ├── StaticResourceExtension.cs └── ThemesDictionary.cs ├── Resources ├── Fonts │ ├── Segoe Fluent Icons.ttf │ └── Violeta Fluent Icons.ttf ├── Images │ ├── background-b.png │ └── background.png ├── Localization │ ├── SH.Designer.cs │ ├── SH.de.resx │ ├── SH.fr.resx │ ├── SH.id.resx │ ├── SH.ja.resx │ ├── SH.ko.resx │ ├── SH.pt.resx │ ├── SH.resx │ ├── SH.ru.resx │ ├── SH.vi.resx │ ├── SH.zh-Hans.resx │ └── SH.zh-Hant.resx ├── ManifestResourceProvider.cs ├── ResourcesProvider.cs ├── Theme │ ├── Dark.xaml │ └── Light.xaml ├── Variables.xaml └── Wpf.Ui.xaml ├── Threading ├── ApplicationDispatcher.cs └── STAThread.cs ├── Win32 ├── DpiAware.cs ├── DpiHelper.cs ├── Gdi32.cs ├── IconManager.cs ├── NTdll.cs ├── SHCore.cs ├── Shell32.cs ├── Structs │ ├── POINT.cs │ └── RECT.cs ├── TrayIconHost.cs ├── User32.cs └── UxTheme.cs └── Wpf.Ui.Violeta.csproj /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/library.nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/.github/workflows/library.nuget.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/README.md -------------------------------------------------------------------------------- /Settings.XamlStyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/Settings.XamlStyler -------------------------------------------------------------------------------- /Wpf.Ui.Violeta.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/Wpf.Ui.Violeta.sln -------------------------------------------------------------------------------- /Wpf.Ui.Violeta.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/Wpf.Ui.Violeta.slnx -------------------------------------------------------------------------------- /branding/geometric_splash.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/geometric_splash.psd -------------------------------------------------------------------------------- /branding/microsoft-fluent-resources.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/microsoft-fluent-resources.psd -------------------------------------------------------------------------------- /branding/wpfui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/wpfui.ico -------------------------------------------------------------------------------- /branding/wpfui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/wpfui.png -------------------------------------------------------------------------------- /branding/wpfui.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/wpfui.psd -------------------------------------------------------------------------------- /branding/wpfui_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/branding/wpfui_full.png -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/App.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/App.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/GlobalUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/GlobalUsing.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/MainWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/Resources/Images/ProfilePicture.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/Resources/Images/ProfilePicture.ico -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/Resources/Images/Tiara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/Resources/Images/Tiara.png -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/Resources/Strings/Sample.md: -------------------------------------------------------------------------------- 1 | # Sample 2 | 3 | ## H2 -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/SecondWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/SecondWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/SecondWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/SecondWindow.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/TrayIconManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/TrayIconManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Test/Wpf.Ui.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Test/Wpf.Ui.Test.csproj -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Appearance/I18N.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Appearance/I18N.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Appearance/ResourceDictionaryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Appearance/ResourceDictionaryManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Appearance/SystemMenuThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Appearance/SystemMenuThemeManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Appearance/ThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Appearance/ThemeManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/BitmapIcon/BitmapIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/BitmapIcon/BitmapIcon.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Button/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Button/Button.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CachedImage/CachedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CachedImage/CachedImage.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CachedImage/FileCacheForImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CachedImage/FileCacheForImage.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButton.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColorDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColorDictionary.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColors.Windows10.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColors.Windows10.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColors.Windows11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonColors.Windows11.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonHandler.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionButtonKind.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionCloseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionCloseButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionHelpButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionHelpButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionMaximizeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionMaximizeButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionMinimizeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButton/CaptionMinimizeButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButtonBar/CaptionButtonBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButtonBar/CaptionButtonBar.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/CaptionButtonBar/CaptionButtonBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/CaptionButtonBar/CaptionButtonBar.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialog.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialog.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButtonClickDeferral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButtonClickDeferral.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButtonClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogButtonClickEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosedEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosingDeferral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosingDeferral.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogClosingEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogHostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogHostService.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogOpenedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogOpenedEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogPlacement.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/ContentDialogResult.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentDialog/CornerRadiusFilterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentDialog/CornerRadiusFilterConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindow.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowControl.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowResult.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowResultEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ContentWindow/ContentWindowResultEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/DataGrid/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/DataGrid/DataGrid.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/DataGrid/LegacyDataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/DataGrid/LegacyDataGrid.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionReport.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ExceptionReport/ExceptionWindow.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Expander/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Expander/Expander.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Flyout/FlyoutService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Flyout/FlyoutService.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/FontIcon/CustomFontSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/FontIcon/CustomFontSymbols.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/FontIcon/FontIconFallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/FontIcon/FontIconFallback.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/FontIcon/FontIconFallback.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/FontIcon/FontIconFallback.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/FontIcon/FontSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/FontIcon/FontSymbols.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ImageView/AnimatedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ImageView/AnimatedImage.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ImageView/AnimationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ImageView/AnimationProvider.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ImageView/BitmapImageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ImageView/BitmapImageProvider.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ImageView/ImageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ImageView/ImageView.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ImageView/ImageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ImageView/ImageView.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/AutoGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/AutoGrid.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/Border.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/Border.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/Drawer.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/Drawer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/Drawer.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/Grid.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/StackPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/StackPanel.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Layout/WrapPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Layout/WrapPanel.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBox.Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBox.Image.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBox.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxButtonClickDeferral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxButtonClickDeferral.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxButtonClickEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxButtonClickEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosedEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosingDeferral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosingDeferral.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxClosingEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxContentTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxContentTemplateSelector.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxDialog.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxDialog.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIcon.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconExtensions.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxIconForegroundConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxImageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxImageExtensions.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxOpenedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxOpenedEventArgs.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxSymbolGlyph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxSymbolGlyph.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxTemplateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/MessageBox/MessageBoxTemplateSettings.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/IPendingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/IPendingHandler.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/Loading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/Loading.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/Loading.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/Loading.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBox.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBoxDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBoxDialog.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBoxDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/PendingBoxDialog.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PendingBox/PendingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PendingBox/PendingHandler.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/InitialsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/InitialsGenerator.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.properties.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPicture.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPictureAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPictureAutomationPeer.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPictureTemplateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/PersonPicture/PersonPictureTemplateSettings.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/ContentPresenterEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/ContentPresenterEx.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/CustomPopupPlacementHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/CustomPopupPlacementHelper.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/IconElementEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/IconElementEx.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/MenuItemGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/MenuItemGroup.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/PopupPositioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/PopupPositioner.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/RadioButtonGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/RadioButtonGroup.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/SimpleVisualStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/SimpleVisualStateManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/ThemeShadowChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/ThemeShadowChrome.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/ToggleButtonGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/ToggleButtonGroup.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/VisualStateGroupListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/VisualStateGroupListener.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Primitives/VisualTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Primitives/VisualTree.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ShellWindow/ShellWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ShellWindow/ShellWindow.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/ShellWindow/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/ShellWindow/ShellWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/SmoothScrollViewer/SmoothScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/SmoothScrollViewer/SmoothScrollViewer.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/SmoothScrollViewer/SmoothScrollViewer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/SmoothScrollViewer/SmoothScrollViewer.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Splash/Splash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Splash/Splash.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Splash/SplashConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Splash/SplashConfig.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Splash/SplashWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Splash/SplashWindow.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Splash/SplashWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Splash/SplashWindow.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TextBox/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TextBox/TextBox.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TitleBar/NativeLikeTitleBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TitleBar/NativeLikeTitleBar.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TitleBar/NativeLikeTitleBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TitleBar/NativeLikeTitleBar.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TitleBarButton/TitleBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TitleBarButton/TitleBarButton.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TitleBarButton/TitleBarButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TitleBarButton/TitleBarButton.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/Toast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/Toast.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastConfig.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastControl.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastControl.xaml.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastIcon.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastIconConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastIconForegroundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastIconForegroundConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastIconVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastIconVisibilityConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/Toast/ToastLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/Toast/ToastLocation.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeListView/TreeLevelToIndentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeListView/TreeLevelToIndentConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListView.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListView.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeListView/TreeListViewItem.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeListView/TreeRowExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeListView/TreeRowExpander.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/ITreeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/ITreeModel.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelCanExpandConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelCanExpandConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelCollection{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelCollection{T}.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelLevelToIndentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelLevelToIndentConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListView.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListView.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelListViewItem.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelNode.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelObject{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelObject{T}.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelRowCollection{T}.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelRowCollection{T}.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelRowExpander.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Controls/TreeModelListView/TreeModelRowExpander.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Converters/FileSizeStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Converters/FileSizeStringConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Converters/PathToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Converters/PathToIconConverter.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Markup/ControlsDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Markup/ControlsDictionary.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Markup/StaticResourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Markup/StaticResourceExtension.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Markup/ThemesDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Markup/ThemesDictionary.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Fonts/Segoe Fluent Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Fonts/Segoe Fluent Icons.ttf -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Fonts/Violeta Fluent Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Fonts/Violeta Fluent Icons.ttf -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Images/background-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Images/background-b.png -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Images/background.png -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.Designer.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.de.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.fr.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.id.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.id.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.ja.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.ja.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.ko.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.ko.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.pt.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.ru.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.ru.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.vi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.vi.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.zh-Hans.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Localization/SH.zh-Hant.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Localization/SH.zh-Hant.resx -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/ManifestResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/ManifestResourceProvider.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/ResourcesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/ResourcesProvider.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Theme/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Theme/Dark.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Theme/Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Theme/Light.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Variables.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Variables.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Resources/Wpf.Ui.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Resources/Wpf.Ui.xaml -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Threading/ApplicationDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Threading/ApplicationDispatcher.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Threading/STAThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Threading/STAThread.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/DpiAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/DpiAware.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/DpiHelper.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/Gdi32.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/IconManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/IconManager.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/NTdll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/NTdll.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/SHCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/SHCore.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/Shell32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/Shell32.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/Structs/POINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/Structs/POINT.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/Structs/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/Structs/RECT.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/TrayIconHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/TrayIconHost.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/User32.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Win32/UxTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Win32/UxTheme.cs -------------------------------------------------------------------------------- /src/Wpf.Ui.Violeta/Wpf.Ui.Violeta.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emako/wpfui.violeta/HEAD/src/Wpf.Ui.Violeta/Wpf.Ui.Violeta.csproj --------------------------------------------------------------------------------