├── .config └── dotnet-tools.json ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ └── feature_request.md ├── copilot-instructions.md ├── dependabot.yml ├── release.yml └── workflows │ ├── build_artifacts.yml │ ├── control_styles.yml │ ├── generate_contributors.yml │ ├── get_versions.yml │ ├── icon_update.yml │ ├── nightly_release.yml │ ├── pr_verification.yml │ ├── release.yml │ └── stale_issues_and_prs.yml ├── .gitignore ├── Directory.Build.props ├── Directory.packages.props ├── LICENSE ├── MaterialDesignToolkit.Full.sln ├── README.md ├── Settings.XamlStyler ├── docs ├── Freezable_Object_for_Enhanced_Performance.md ├── Optimize_UI_Thread_Performance.md ├── Optimizing-WPF-Rendering-Performance.md ├── Reducing_Layout_Complexity.md └── rendering-performance.md ├── global.json ├── nuget.config ├── src ├── MahMaterialDragablzMashUp │ ├── AnotherCommandImplementation.cs │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Dialogs.xaml │ ├── Dialogs.xaml.cs │ ├── DialogsViewModel.cs │ ├── FlyoutContent.xaml │ ├── FlyoutContent.xaml.cs │ ├── Mah.xaml │ ├── Mah.xaml.cs │ ├── MahAppsDragablzDemo.csproj │ ├── MahViewModel.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── NotEmptyValidationRule.cs │ ├── PaletteSelector.xaml │ ├── PaletteSelector.xaml.cs │ ├── PaletteSelectorViewModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ └── ProfilePic.jpg │ └── XamlDisplayEx.cs ├── MainDemo.Wpf │ ├── App.config │ ├── App.manifest │ ├── App.xaml │ ├── App.xaml.cs │ ├── ButtonAssist.cs │ ├── Buttons.xaml │ ├── Buttons.xaml.cs │ ├── Cards.xaml │ ├── Cards.xaml.cs │ ├── Chips.xaml │ ├── Chips.xaml.cs │ ├── ColorTool.xaml │ ├── ColorTool.xaml.cs │ ├── ColorZones.xaml │ ├── ColorZones.xaml.cs │ ├── ComboBoxes.xaml │ ├── ComboBoxes.xaml.cs │ ├── CommandLineOptions.cs │ ├── DataGrids.xaml │ ├── DataGrids.xaml.cs │ ├── Dialogs.xaml │ ├── Dialogs.xaml.cs │ ├── Domain │ │ ├── DemoItem.cs │ │ ├── DialogsViewModel.cs │ │ ├── DocumentationLink.cs │ │ ├── DocumentationLinkType.cs │ │ ├── DocumentationLinks.xaml │ │ ├── DocumentationLinks.xaml.cs │ │ ├── FieldsViewModel.cs │ │ ├── FutureDateValidationRule.cs │ │ ├── IconPackViewModel.cs │ │ ├── IsCheckedValidationRule.cs │ │ ├── Link.cs │ │ ├── ListsAndGridsViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── NotEmptyValidationRule.cs │ │ ├── PaletteSelectorViewModel.cs │ │ ├── PickersViewModel.cs │ │ ├── Sample4Dialog.xaml │ │ ├── Sample4Dialog.xaml.cs │ │ ├── SampleDialog.xaml │ │ ├── SampleDialog.xaml.cs │ │ ├── SampleDialogViewModel.cs │ │ ├── SampleMessageDialog.xaml │ │ ├── SampleMessageDialog.xaml.cs │ │ ├── SampleProgressDialog.xaml │ │ ├── SampleProgressDialog.xaml.cs │ │ ├── SelectableViewModel.cs │ │ ├── SimpleDataTemplateSelector.cs │ │ ├── SimpleDateValidationRule.cs │ │ ├── SlidersViewModel.cs │ │ ├── SmartHintViewModel.cs │ │ ├── TabsViewModel.cs │ │ ├── ThemeSettingsViewModel.cs │ │ └── TreesViewModel.cs │ ├── Drawers.xaml │ ├── Drawers.xaml.cs │ ├── Elevation.xaml │ ├── Elevation.xaml.cs │ ├── Expander.xaml │ ├── Expander.xaml.cs │ ├── Fields.xaml │ ├── Fields.xaml.cs │ ├── FieldsLineUp.xaml │ ├── FieldsLineUp.xaml.cs │ ├── GroupBoxes.xaml │ ├── GroupBoxes.xaml.cs │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── IconPack.xaml │ ├── IconPack.xaml.cs │ ├── InputElementContentControl.cs │ ├── Lists.xaml │ ├── Lists.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MaterialDesignDemo.csproj │ ├── MenusAndToolBars.xaml │ ├── MenusAndToolBars.xaml.cs │ ├── NavigationRail.xaml │ ├── NavigationRail.xaml.cs │ ├── NumericUpDown.xaml │ ├── NumericUpDown.xaml.cs │ ├── PackIconKindGroup.cs │ ├── Palette.xaml │ ├── Palette.xaml.cs │ ├── PaletteSelector.xaml │ ├── PaletteSelector.xaml.cs │ ├── Pickers.xaml │ ├── Pickers.xaml.cs │ ├── PopupBox.xaml │ ├── PopupBox.xaml.cs │ ├── Progress.xaml │ ├── Progress.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── launchSettings.json │ ├── RatingBar.xaml │ ├── RatingBar.xaml.cs │ ├── Resources │ │ ├── Chartridge046_small.jpg │ │ ├── Contact.png │ │ ├── ProfilePic.jpg │ │ ├── favicon.ico │ │ └── ms-icon-310x310.png │ ├── ScreenGrabFromGoogle.gif │ ├── Sliders.xaml │ ├── Sliders.xaml.cs │ ├── SmartHint.xaml │ ├── SmartHint.xaml.cs │ ├── Snackbars.xaml │ ├── Snackbars.xaml.cs │ ├── Tabs.xaml │ ├── Tabs.xaml.cs │ ├── ThemeSettings.xaml │ ├── ThemeSettings.xaml.cs │ ├── Toggles.xaml │ ├── Toggles.xaml.cs │ ├── ToolTips.xaml │ ├── ToolTips.xaml.cs │ ├── Transitions.xaml │ ├── Transitions.xaml.cs │ ├── TransitionsDemo │ │ ├── Slide1_Intro.xaml │ │ ├── Slide1_Intro.xaml.cs │ │ ├── Slide2_Intro.xaml │ │ ├── Slide2_Intro.xaml.cs │ │ ├── Slide3_Intro.xaml │ │ ├── Slide3_Intro.xaml.cs │ │ ├── Slide4_CombineTransitions.xaml │ │ ├── Slide4_CombineTransitions.xaml.cs │ │ ├── Slide5_TransitioningContent.xaml │ │ ├── Slide5_TransitioningContent.xaml.cs │ │ ├── Slide6_Origins.xaml │ │ ├── Slide6_Origins.xaml.cs │ │ ├── Slide7_MVVM.xaml │ │ ├── Slide7_MVVM.xaml.cs │ │ ├── Slide7_MasterModel.cs │ │ ├── Slide8_Details.xaml │ │ ├── Slide8_Details.xaml.cs │ │ ├── TransitionsDemoHome.xaml │ │ └── TransitionsDemoHome.xaml.cs │ ├── Trees.xaml │ ├── Trees.xaml.cs │ ├── Typography.xaml │ ├── Typography.xaml.cs │ ├── VisualTreeUtil.cs │ ├── XamlDisplayEx.cs │ └── favicon.ico ├── MaterialDesign3.Demo.Wpf │ ├── App.config │ ├── App.manifest │ ├── App.xaml │ ├── App.xaml.cs │ ├── ButtonAssist.cs │ ├── Buttons.xaml │ ├── Buttons.xaml.cs │ ├── Cards.xaml │ ├── Cards.xaml.cs │ ├── Chips.xaml │ ├── Chips.xaml.cs │ ├── ColorScheme.cs │ ├── ColorTool.xaml │ ├── ColorTool.xaml.cs │ ├── ColorZones.xaml │ ├── ColorZones.xaml.cs │ ├── ComboBoxes.xaml │ ├── ComboBoxes.xaml.cs │ ├── DataGrids.xaml │ ├── DataGrids.xaml.cs │ ├── Dialogs.xaml │ ├── Dialogs.xaml.cs │ ├── Domain │ │ ├── AnotherCommandImplementation.cs │ │ ├── DemoItem.cs │ │ ├── DialogsViewModel.cs │ │ ├── DocumentationLink.cs │ │ ├── DocumentationLinkType.cs │ │ ├── DocumentationLinks.xaml │ │ ├── DocumentationLinks.xaml.cs │ │ ├── FieldsViewModel.cs │ │ ├── FutureDateValidationRule.cs │ │ ├── IconPackViewModel.cs │ │ ├── IsCheckedValidationRule.cs │ │ ├── Link.cs │ │ ├── ListsAndGridsViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── NotEmptyValidationRule.cs │ │ ├── PaletteSelectorViewModel.cs │ │ ├── PickersViewModel.cs │ │ ├── Sample4Dialog.xaml │ │ ├── Sample4Dialog.xaml.cs │ │ ├── SampleDialog.xaml │ │ ├── SampleDialog.xaml.cs │ │ ├── SampleDialogViewModel.cs │ │ ├── SampleItem.cs │ │ ├── SampleMessageDialog.xaml │ │ ├── SampleMessageDialog.xaml.cs │ │ ├── SampleProgressDialog.xaml │ │ ├── SampleProgressDialog.xaml.cs │ │ ├── SelectableViewModel.cs │ │ ├── SimpleDataTemplateSelector.cs │ │ ├── SimpleDateValidationRule.cs │ │ ├── SlidersViewModel.cs │ │ ├── ThemeSettingsViewModel.cs │ │ └── TreesViewModel.cs │ ├── Drawers.xaml │ ├── Drawers.xaml.cs │ ├── Elevation.xaml │ ├── Elevation.xaml.cs │ ├── Expander.xaml │ ├── Expander.xaml.cs │ ├── Fields.xaml │ ├── Fields.xaml.cs │ ├── FieldsLineUp.xaml │ ├── FieldsLineUp.xaml.cs │ ├── GroupBoxes.xaml │ ├── GroupBoxes.xaml.cs │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── IconPack.xaml │ ├── IconPack.xaml.cs │ ├── Lists.xaml │ ├── Lists.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MaterialDesign3Demo.csproj │ ├── MenusAndToolBars.xaml │ ├── MenusAndToolBars.xaml.cs │ ├── NavigationBar.xaml │ ├── NavigationBar.xaml.cs │ ├── NavigationRail.xaml │ ├── NavigationRail.xaml.cs │ ├── PackIconKindGroup.cs │ ├── Palette.xaml │ ├── Palette.xaml.cs │ ├── PaletteHelperExtensions.cs │ ├── PaletteSelector.xaml │ ├── PaletteSelector.xaml.cs │ ├── Pickers.xaml │ ├── Pickers.xaml.cs │ ├── Progress.xaml │ ├── Progress.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── launchSettings.json │ ├── RatingBar.xaml │ ├── RatingBar.xaml.cs │ ├── Resources │ │ ├── Chartridge046_small.jpg │ │ ├── Contact.png │ │ ├── ProfilePic.jpg │ │ ├── favicon.ico │ │ └── ms-icon-310x310.png │ ├── ScreenGrabFromGoogle.gif │ ├── Sliders.xaml │ ├── Sliders.xaml.cs │ ├── Snackbars.xaml │ ├── Snackbars.xaml.cs │ ├── ThemeSettings.xaml │ ├── ThemeSettings.xaml.cs │ ├── Toggles.xaml │ ├── Toggles.xaml.cs │ ├── ToolTips.xaml │ ├── ToolTips.xaml.cs │ ├── Transitions.xaml │ ├── Transitions.xaml.cs │ ├── TransitionsDemo │ │ ├── Slide1_Intro.xaml │ │ ├── Slide1_Intro.xaml.cs │ │ ├── Slide2_Intro.xaml │ │ ├── Slide2_Intro.xaml.cs │ │ ├── Slide3_Intro.xaml │ │ ├── Slide3_Intro.xaml.cs │ │ ├── Slide4_CombineTransitions.xaml │ │ ├── Slide4_CombineTransitions.xaml.cs │ │ ├── Slide5_TransitioningContent.xaml │ │ ├── Slide5_TransitioningContent.xaml.cs │ │ ├── Slide6_Origins.xaml │ │ ├── Slide6_Origins.xaml.cs │ │ ├── Slide7_MVVM.xaml │ │ ├── Slide7_MVVM.xaml.cs │ │ ├── Slide7_MasterModel.cs │ │ ├── Slide8_Details.xaml │ │ ├── Slide8_Details.xaml.cs │ │ ├── TransitionsDemoHome.xaml │ │ └── TransitionsDemoHome.xaml.cs │ ├── Trees.xaml │ ├── Trees.xaml.cs │ ├── Typography.xaml │ ├── Typography.xaml.cs │ ├── XamlDisplayEx.cs │ └── favicon.ico ├── MaterialDesign3.MaterialColorUtilities │ ├── Blend │ │ └── Blend.cs │ ├── Contrast │ │ └── Contrast.cs │ ├── Dislike │ │ └── DislikeAnalyzer.cs │ ├── DynamicColor │ │ ├── ColorSpec.cs │ │ ├── ColorSpec2021.cs │ │ ├── ColorSpec2025.cs │ │ ├── ColorSpecs.cs │ │ ├── ContrastCurve.cs │ │ ├── DeltaConstraint.cs │ │ ├── DynamicColor.cs │ │ ├── DynamicScheme.cs │ │ ├── MaterialDynamicColors.cs │ │ ├── Platform.cs │ │ ├── SpecVersion.cs │ │ ├── ToneDeltaPair.cs │ │ ├── TonePolarity.cs │ │ └── Variant.cs │ ├── Hct │ │ ├── Cam16.cs │ │ ├── Hct.cs │ │ ├── HctSolver.cs │ │ └── ViewingConditions.cs │ ├── MaterialColorUtilities.csproj │ ├── Palettes │ │ ├── CorePalette.cs │ │ ├── CorePalettes.cs │ │ └── TonalPalette.cs │ ├── Quantize │ │ ├── PointProvider.cs │ │ ├── PointProviderLab.cs │ │ ├── Quantizer.cs │ │ ├── QuantizerCelebi.cs │ │ ├── QuantizerMap.cs │ │ ├── QuantizerResult.cs │ │ ├── QuantizerWsmeans.cs │ │ └── QuantizerWu.cs │ ├── Scheme │ │ ├── DynamicSchemeFactory.cs │ │ ├── Scheme.cs │ │ ├── SchemeContent.cs │ │ ├── SchemeExpressive.cs │ │ ├── SchemeFidelity.cs │ │ ├── SchemeFruitSalad.cs │ │ ├── SchemeMonochrome.cs │ │ ├── SchemeNeutral.cs │ │ ├── SchemeRainbow.cs │ │ ├── SchemeTonalSpot.cs │ │ └── SchemeVibrant.cs │ ├── Score │ │ └── Score.cs │ ├── Temperature │ │ └── TemperatureCache.cs │ └── Utils │ │ ├── ColorUtils.cs │ │ ├── MathUtils.cs │ │ └── StringUtils.cs ├── MaterialDesign3.Motion │ ├── AnimationEndReason.cs │ ├── AnimationParameters.cs │ ├── AnimationSpec.cs │ ├── AnimationVector.cs │ ├── AnimationVector1D.cs │ ├── AnimationVector2D.cs │ ├── AnimationVector3D.cs │ ├── AnimationVector4D.cs │ ├── AnimationVectorExtensions.cs │ ├── AnimationVectorFactory.cs │ ├── ArcSpline.cs │ ├── CubicBezierEasing.cs │ ├── Easing.cs │ ├── Hermite.cs │ ├── IMotionScheme.cs │ ├── ITwoWayConverter.cs │ ├── MonoSpline.cs │ ├── Motion.cs │ ├── Motion.csproj │ ├── Motion.md │ ├── MotionSchemeContext.cs │ ├── MotionSchemeExtensions.cs │ ├── MotionSchemeKeyTokenExtensions.cs │ ├── MotionSchemeKeyTokens.cs │ ├── MotionSchemes.cs │ ├── MotionTokens.cs │ ├── Preconditions.cs │ ├── RepeatMode.cs │ ├── Repeatable.cs │ ├── SpringConstants.cs │ ├── SpringEstimation.cs │ ├── SpringMotionSpec.cs │ ├── SpringSimulation.cs │ ├── TwoWayConverter.cs │ └── VectorConverters.cs ├── MaterialDesignColors.Wpf │ ├── ColorManipulation │ │ ├── ColorAssist.cs │ │ ├── Hsb.cs │ │ ├── HsbExtensions.cs │ │ ├── Hsl.cs │ │ ├── HslExtensions.cs │ │ ├── Lab.cs │ │ ├── LabExtensions.cs │ │ ├── Xyz.cs │ │ └── XyzExtensions.cs │ ├── ColorPair.cs │ ├── Hue.cs │ ├── ISwatch.cs │ ├── MaterialDesignColor.cs │ ├── MaterialDesignColors.Wpf.csproj │ ├── MaterialDesignColors.nuspec │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Recommended │ │ ├── AmberSwatch.cs │ │ ├── BlueGreySwatch.cs │ │ ├── BlueSwatch.cs │ │ ├── BrownSwatch.cs │ │ ├── CyanSwatch.cs │ │ ├── DeepOrangeSwatch.cs │ │ ├── DeepPurpleSwatch.cs │ │ ├── GreenSwatch.cs │ │ ├── GreySwatch.cs │ │ ├── IndigoSwatch.cs │ │ ├── LightBlueSwatch.cs │ │ ├── LightGreenSwatch.cs │ │ ├── LimeSwatch.cs │ │ ├── OrangeSwatch.cs │ │ ├── PinkSwatch.cs │ │ ├── PurpleSwatch.cs │ │ ├── RedSwatch.cs │ │ ├── TealSwatch.cs │ │ └── YellowSwatch.cs │ ├── StaticResourceExtension.cs │ ├── Swatch.cs │ ├── SwatchHelper.cs │ ├── SwatchesProvider.cs │ └── Themes │ │ ├── MaterialDesignColor.Amber.Named.Primary.xaml │ │ ├── MaterialDesignColor.Amber.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Amber.Named.xaml │ │ ├── MaterialDesignColor.Amber.Primary.xaml │ │ ├── MaterialDesignColor.Amber.Secondary.xaml │ │ ├── MaterialDesignColor.Amber.xaml │ │ ├── MaterialDesignColor.Blue.Named.Primary.xaml │ │ ├── MaterialDesignColor.Blue.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Blue.Named.xaml │ │ ├── MaterialDesignColor.Blue.Primary.xaml │ │ ├── MaterialDesignColor.Blue.Secondary.xaml │ │ ├── MaterialDesignColor.Blue.xaml │ │ ├── MaterialDesignColor.BlueGrey.Named.Primary.xaml │ │ ├── MaterialDesignColor.BlueGrey.Named.xaml │ │ ├── MaterialDesignColor.BlueGrey.Primary.xaml │ │ ├── MaterialDesignColor.BlueGrey.xaml │ │ ├── MaterialDesignColor.Brown.Named.Primary.xaml │ │ ├── MaterialDesignColor.Brown.Named.xaml │ │ ├── MaterialDesignColor.Brown.Primary.xaml │ │ ├── MaterialDesignColor.Brown.xaml │ │ ├── MaterialDesignColor.Cyan.Named.Primary.xaml │ │ ├── MaterialDesignColor.Cyan.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Cyan.Named.xaml │ │ ├── MaterialDesignColor.Cyan.Primary.xaml │ │ ├── MaterialDesignColor.Cyan.Secondary.xaml │ │ ├── MaterialDesignColor.Cyan.xaml │ │ ├── MaterialDesignColor.DeepOrange.Named.Primary.xaml │ │ ├── MaterialDesignColor.DeepOrange.Named.Secondary.xaml │ │ ├── MaterialDesignColor.DeepOrange.Named.xaml │ │ ├── MaterialDesignColor.DeepOrange.Primary.xaml │ │ ├── MaterialDesignColor.DeepOrange.Secondary.xaml │ │ ├── MaterialDesignColor.DeepOrange.xaml │ │ ├── MaterialDesignColor.DeepPurple.Named.Primary.xaml │ │ ├── MaterialDesignColor.DeepPurple.Named.Secondary.xaml │ │ ├── MaterialDesignColor.DeepPurple.Named.xaml │ │ ├── MaterialDesignColor.DeepPurple.Primary.xaml │ │ ├── MaterialDesignColor.DeepPurple.Secondary.xaml │ │ ├── MaterialDesignColor.DeepPurple.xaml │ │ ├── MaterialDesignColor.Green.Named.Primary.xaml │ │ ├── MaterialDesignColor.Green.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Green.Named.xaml │ │ ├── MaterialDesignColor.Green.Primary.xaml │ │ ├── MaterialDesignColor.Green.Secondary.xaml │ │ ├── MaterialDesignColor.Green.xaml │ │ ├── MaterialDesignColor.Grey.Named.Primary.xaml │ │ ├── MaterialDesignColor.Grey.Named.xaml │ │ ├── MaterialDesignColor.Grey.Primary.xaml │ │ ├── MaterialDesignColor.Grey.xaml │ │ ├── MaterialDesignColor.Indigo.Named.Primary.xaml │ │ ├── MaterialDesignColor.Indigo.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Indigo.Named.xaml │ │ ├── MaterialDesignColor.Indigo.Primary.xaml │ │ ├── MaterialDesignColor.Indigo.Secondary.xaml │ │ ├── MaterialDesignColor.Indigo.xaml │ │ ├── MaterialDesignColor.LightBlue.Named.Primary.xaml │ │ ├── MaterialDesignColor.LightBlue.Named.Secondary.xaml │ │ ├── MaterialDesignColor.LightBlue.Named.xaml │ │ ├── MaterialDesignColor.LightBlue.Primary.xaml │ │ ├── MaterialDesignColor.LightBlue.Secondary.xaml │ │ ├── MaterialDesignColor.LightBlue.xaml │ │ ├── MaterialDesignColor.LightGreen.Named.Primary.xaml │ │ ├── MaterialDesignColor.LightGreen.Named.Secondary.xaml │ │ ├── MaterialDesignColor.LightGreen.Named.xaml │ │ ├── MaterialDesignColor.LightGreen.Primary.xaml │ │ ├── MaterialDesignColor.LightGreen.Secondary.xaml │ │ ├── MaterialDesignColor.LightGreen.xaml │ │ ├── MaterialDesignColor.Lime.Named.Primary.xaml │ │ ├── MaterialDesignColor.Lime.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Lime.Named.xaml │ │ ├── MaterialDesignColor.Lime.Primary.xaml │ │ ├── MaterialDesignColor.Lime.Secondary.xaml │ │ ├── MaterialDesignColor.Lime.xaml │ │ ├── MaterialDesignColor.Orange.Named.Primary.xaml │ │ ├── MaterialDesignColor.Orange.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Orange.Named.xaml │ │ ├── MaterialDesignColor.Orange.Primary.xaml │ │ ├── MaterialDesignColor.Orange.Secondary.xaml │ │ ├── MaterialDesignColor.Orange.xaml │ │ ├── MaterialDesignColor.Pink.Named.Primary.xaml │ │ ├── MaterialDesignColor.Pink.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Pink.Named.xaml │ │ ├── MaterialDesignColor.Pink.Primary.xaml │ │ ├── MaterialDesignColor.Pink.Secondary.xaml │ │ ├── MaterialDesignColor.Pink.xaml │ │ ├── MaterialDesignColor.Purple.Named.Primary.xaml │ │ ├── MaterialDesignColor.Purple.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Purple.Named.xaml │ │ ├── MaterialDesignColor.Purple.Primary.xaml │ │ ├── MaterialDesignColor.Purple.Secondary.xaml │ │ ├── MaterialDesignColor.Purple.xaml │ │ ├── MaterialDesignColor.Red.Named.Primary.xaml │ │ ├── MaterialDesignColor.Red.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Red.Named.xaml │ │ ├── MaterialDesignColor.Red.Primary.xaml │ │ ├── MaterialDesignColor.Red.Secondary.xaml │ │ ├── MaterialDesignColor.Red.xaml │ │ ├── MaterialDesignColor.Teal.Named.Primary.xaml │ │ ├── MaterialDesignColor.Teal.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Teal.Named.xaml │ │ ├── MaterialDesignColor.Teal.Primary.xaml │ │ ├── MaterialDesignColor.Teal.Secondary.xaml │ │ ├── MaterialDesignColor.Teal.xaml │ │ ├── MaterialDesignColor.Yellow.Named.Primary.xaml │ │ ├── MaterialDesignColor.Yellow.Named.Secondary.xaml │ │ ├── MaterialDesignColor.Yellow.Named.xaml │ │ ├── MaterialDesignColor.Yellow.Primary.xaml │ │ ├── MaterialDesignColor.Yellow.Secondary.xaml │ │ ├── MaterialDesignColor.Yellow.xaml │ │ └── Recommended │ │ ├── Primary │ │ ├── MaterialDesignColor.Amber.xaml │ │ ├── MaterialDesignColor.Blue.xaml │ │ ├── MaterialDesignColor.BlueGrey.xaml │ │ ├── MaterialDesignColor.Brown.xaml │ │ ├── MaterialDesignColor.Cyan.xaml │ │ ├── MaterialDesignColor.DeepOrange.xaml │ │ ├── MaterialDesignColor.DeepPurple.xaml │ │ ├── MaterialDesignColor.Green.xaml │ │ ├── MaterialDesignColor.Grey.xaml │ │ ├── MaterialDesignColor.Indigo.xaml │ │ ├── MaterialDesignColor.LightBlue.xaml │ │ ├── MaterialDesignColor.LightGreen.xaml │ │ ├── MaterialDesignColor.Lime.xaml │ │ ├── MaterialDesignColor.Orange.xaml │ │ ├── MaterialDesignColor.Pink.xaml │ │ ├── MaterialDesignColor.Purple.xaml │ │ ├── MaterialDesignColor.Red.xaml │ │ ├── MaterialDesignColor.Teal.xaml │ │ └── MaterialDesignColor.Yellow.xaml │ │ └── Secondary │ │ ├── MaterialDesignColor.Amber.xaml │ │ ├── MaterialDesignColor.Blue.xaml │ │ ├── MaterialDesignColor.Cyan.xaml │ │ ├── MaterialDesignColor.DeepOrange.xaml │ │ ├── MaterialDesignColor.DeepPurple.xaml │ │ ├── MaterialDesignColor.Green.xaml │ │ ├── MaterialDesignColor.Indigo.xaml │ │ ├── MaterialDesignColor.LightBlue.xaml │ │ ├── MaterialDesignColor.LightGreen.xaml │ │ ├── MaterialDesignColor.Lime.xaml │ │ ├── MaterialDesignColor.Orange.xaml │ │ ├── MaterialDesignColor.Pink.xaml │ │ ├── MaterialDesignColor.Purple.xaml │ │ ├── MaterialDesignColor.Red.xaml │ │ ├── MaterialDesignColor.Teal.xaml │ │ └── MaterialDesignColor.Yellow.xaml ├── MaterialDesignDemo.Shared │ ├── ColorScheme.cs │ ├── Converters │ │ ├── BoolToTextWrappingConverter.cs │ │ ├── BooleanToDoubleConverter.cs │ │ ├── BrushToHexConverter.cs │ │ ├── ColorToBrushConverter.cs │ │ ├── IsTransparentConverter.cs │ │ ├── MultiValueEqualityConverter.cs │ │ └── StringJoinConverter.cs │ ├── Domain │ │ ├── AnotherCommandImplementation.cs │ │ ├── ButtonsViewModel.cs │ │ ├── ColorToolViewModel.cs │ │ ├── ComboBoxesViewModel.cs │ │ ├── ToolTipsViewModel.cs │ │ └── ViewModelBase.cs │ ├── MaterialDesignDemo.Shared.csproj │ └── PaletteHelperExtensions.cs ├── MaterialDesignThemes.MahApps │ ├── BaseThemeExtensions.cs │ ├── FlyoutAssist.cs │ ├── MahAppsBundledTheme.cs │ ├── MahAppsCustomColorTheme.cs │ ├── MaterialDesignAssist.cs │ ├── MaterialDesignThemes.MahApps.csproj │ ├── MaterialDesignThemes.MahApps.nuspec │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── Themes │ │ ├── MaterialDesignTheme.MahApps.Defaults.xaml │ │ ├── MaterialDesignTheme.MahApps.Dialogs.xaml │ │ ├── MaterialDesignTheme.MahApps.Flyout.xaml │ │ ├── MaterialDesignTheme.MahApps.Fonts.xaml │ │ ├── MaterialDesignTheme.MahApps.NumericUpDown.xaml │ │ ├── MaterialDesignTheme.MahApps.PasswordBox.xaml │ │ ├── MaterialDesignTheme.MahApps.RangeSlider.xaml │ │ ├── MaterialDesignTheme.MahApps.TextBox.xaml │ │ └── MaterialDesignTheme.MahApps.WindowCommands.xaml ├── MaterialDesignThemes.Wpf │ ├── AdornerExtensions.cs │ ├── AutoSuggestBox.cs │ ├── Automation │ │ └── Peers │ │ │ └── TreeListViewItemAutomationPeer.cs │ ├── Badged.cs │ ├── BadgedAssist.cs │ ├── BaseTheme.cs │ ├── BehaviorCollection.cs │ ├── Behaviors │ │ ├── Internal │ │ │ └── TextBoxHorizontalScrollBarBehavior.cs │ │ ├── PasswordBoxBehavior.cs │ │ ├── PasswordBoxRevealTextBoxBehavior.cs │ │ ├── SmartHintBehavior.cs │ │ └── TextBoxLineCountBehavior.cs │ ├── BehaviorsAssist.cs │ ├── BottomDashedLineAdorner.cs │ ├── BundledTheme.cs │ ├── ButtonAssist.cs │ ├── ButtonProgressAssist.cs │ ├── CalendarAssist.cs │ ├── CalendarFormatInfo.cs │ ├── Card.cs │ ├── CheckBoxAssist.cs │ ├── Chip.cs │ ├── Clock.cs │ ├── ClockChoiceMadeEventArgs.cs │ ├── ClockItemButton.cs │ ├── ColorAdjustment.cs │ ├── ColorPicker.cs │ ├── ColorReference.cs │ ├── ColorSelection.cs │ ├── ColorZone.cs │ ├── ColorZoneAssist.cs │ ├── ColorZoneMode.cs │ ├── ComboBoxAssist.cs │ ├── ComboBoxPopup.cs │ ├── Constants.cs │ ├── Contrast.cs │ ├── Converters │ │ ├── BooleanAllConverter.cs │ │ ├── BooleanConverter.cs │ │ ├── BooleanToDashStyleConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── BorderClipConverter.cs │ │ ├── BrushOpacityConverter.cs │ │ ├── BrushRoundConverter.cs │ │ ├── BrushToRadialGradientBrushConverter.cs │ │ ├── CalendarDateCoalesceConverter.cs │ │ ├── CalendarYearMonthConverter.cs │ │ ├── CircularProgressBar │ │ │ ├── ArcEndPointConverter.cs │ │ │ ├── ArcSizeConverter.cs │ │ │ ├── LocalEx.cs │ │ │ ├── RotateTransformCentreConverter.cs │ │ │ └── StartPointConverter.cs │ │ ├── ClockItemIsCheckedConverter.cs │ │ ├── ClockLineConverter.cs │ │ ├── CornerRadiusCloneConverter.cs │ │ ├── CursorConverter.cs │ │ ├── DrawerOffsetConverter.cs │ │ ├── ElevationMarginConverter.cs │ │ ├── ElevationRadiusConverter.cs │ │ ├── EllipseClipConverter.cs │ │ ├── EqualityToVisibilityConverter.cs │ │ ├── FallbackBrushConverter.cs │ │ ├── FirstNonNullConverter.cs │ │ ├── FloatingHintClippingGridConverter.cs │ │ ├── FloatingHintContainerMarginConverter.cs │ │ ├── FloatingHintInitialHorizontalOffsetConverter.cs │ │ ├── FloatingHintInitialVerticalOffsetConverter.cs │ │ ├── FloatingHintMarginConverter.cs │ │ ├── FloatingHintScaleTransformConverter.cs │ │ ├── FloatingHintTranslateTransformConverter.cs │ │ ├── GridLinesVisibilityBorderToThicknessConverter.cs │ │ ├── HintProxyFabricConverter.cs │ │ ├── HorizontalThicknessConverter.cs │ │ ├── HsbLinearGradientConverter.cs │ │ ├── HsbToColorConverter.cs │ │ ├── Internal │ │ │ ├── AutomationPropertiesNameConverter.cs │ │ │ ├── DialogBackgroundBlurConverter.cs │ │ │ ├── DoubleToCornerRadiusConverter.cs │ │ │ ├── ExpanderRotateAngleConverter.cs │ │ │ ├── FloatingHintTextBlockMarginConverter.cs │ │ │ ├── SliderToolTipConverter.cs │ │ │ ├── SliderValueLabelPositionConverter.cs │ │ │ ├── TextBoxHorizontalScrollBarMarginConverter.cs │ │ │ ├── TextBoxHorizontalScrollBarWidthConverter.cs │ │ │ ├── TextFieldClearButtonVisibilityConverter.cs │ │ │ └── ViewIsGridViewConverter.cs │ │ ├── InvertBooleanConverter.cs │ │ ├── IsDarkConverter.cs │ │ ├── IsTransparentBrushConverter.cs │ │ ├── ListViewItemContainerStyleConverter.cs │ │ ├── MathConverter.cs │ │ ├── MathMultipleConverter.cs │ │ ├── MathOperation.cs │ │ ├── NonDefaultThicknessConverter.cs │ │ ├── NotConverter.cs │ │ ├── NotZeroConverter.cs │ │ ├── NotZeroToVisibilityConverter.cs │ │ ├── NullableDateTimeToCurrentDateConverter.cs │ │ ├── NullableToVisibilityConverter.cs │ │ ├── OutlinedDateTimePickerActiveBorderThicknessConverter.cs │ │ ├── OutlinedStyleActiveBorderMarginCompensationConverter.cs │ │ ├── OutlinedStyleFloatingHintBackgroundConverter.cs │ │ ├── PointValueConverter.cs │ │ ├── RangeLengthConverter.cs │ │ ├── RemoveAlphaBrushConverter.cs │ │ ├── ShadowConverter.cs │ │ ├── ShadowOpacityMaskConverter.cs │ │ ├── SnackbarActionButtonPlacementModeConverter.cs │ │ ├── SnackbarMessageTypeConverter.cs │ │ ├── StringLengthValueConverter.cs │ │ ├── TextFieldHintVisibilityConverter.cs │ │ ├── TextFieldPrefixTextVisibilityConverter.cs │ │ ├── ThicknessCloneConverter.cs │ │ ├── TimeToVisibilityConverter.cs │ │ ├── ToolBarOverflowButtonVisibilityConverter.cs │ │ ├── TopThicknessConverter.cs │ │ ├── TreeListViewIndentConverter.cs │ │ └── VerticalAlignmentConverter.cs │ ├── CustomColorTheme.cs │ ├── CustomPopupPlacementCallbackHelper.cs │ ├── DataGridAssist.cs │ ├── DataGridComboBoxColumn.cs │ ├── DataGridTextColumn.cs │ ├── DatePickerAssist.cs │ ├── DateTimeEx.cs │ ├── DecimalUpDown.cs │ ├── DialogClosedEventArgs.cs │ ├── DialogClosedEventHandler.cs │ ├── DialogClosingEventArgs.cs │ ├── DialogClosingEventHandler.cs │ ├── DialogHost.cs │ ├── DialogHostEx.cs │ ├── DialogOpenedEventArgs.cs │ ├── DialogOpenedEventHandler.cs │ ├── DialogSession.cs │ ├── DpiHelper.cs │ ├── DrawerClosingEventArgs.cs │ ├── DrawerHost.cs │ ├── DrawerHostOpenMode.cs │ ├── DrawerOpenedEventArgs.cs │ ├── ElevationAssist.cs │ ├── ExpanderAssist.cs │ ├── Flipper.cs │ ├── FlipperAssist.cs │ ├── FlipperClassic.cs │ ├── FloatingHintHorizontalAlignment.cs │ ├── GridViewColumnThumb.cs │ ├── GroupBoxAssist.cs │ ├── HintAssist.cs │ ├── HintProxyFabric.ComboBox.cs │ ├── HintProxyFabric.PasswordBox.cs │ ├── HintProxyFabric.RichTextBox.cs │ ├── HintProxyFabric.TextBox.cs │ ├── HintProxyFabric.cs │ ├── IHintProxy.cs │ ├── IMaterialDesignThemeDictionary.cs │ ├── ISnackbarMessageQueue.cs │ ├── IThemeManager.cs │ ├── InheritSystemColorTypeConverter.cs │ ├── Internal │ │ ├── ClearText.cs │ │ ├── InternalTextFieldAssist.cs │ │ ├── Shims │ │ │ ├── Index.cs │ │ │ └── NotNullWhen.cs │ │ ├── TreeListViewContentPresenter.cs │ │ └── TreeListViewItemsCollection.cs │ ├── ListBoxAssist.cs │ ├── ListBoxItemAssist.cs │ ├── ListSortDirectionIndicator.cs │ ├── ListViewAssist.cs │ ├── MaterialDateDisplay.cs │ ├── MaterialDesignFont.cs │ ├── MaterialDesignThemes.Wpf.csproj │ ├── MaterialDesignThemes.nuspec │ ├── MaterialDesignThemes.targets │ ├── MenuAssist.cs │ ├── MenuItemAssist.cs │ ├── MessageQueueExtension.cs │ ├── NavigationBarAssist.cs │ ├── NavigationDrawerAssist.cs │ ├── NavigationRailAssist.cs │ ├── NotoFontExtension.cs │ ├── NumericUpDown.cs │ ├── PackIcon.cs │ ├── PackIconDataFactory.cs │ ├── PackIconExtension.cs │ ├── PackIconKind.cs │ ├── PaddingMode.cs │ ├── Palette.cs │ ├── PaletteHelper.cs │ ├── PasswordBoxAssist.cs │ ├── Plane3D.cs │ ├── PopupBox.cs │ ├── PopupEx.cs │ ├── PrefixSuffixHintBehavior.cs │ ├── PrefixSuffixVisibility.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RadioButtonAssist.cs │ ├── RatingBar.cs │ ├── RatingBarButton.cs │ ├── ResourceDictionaryExtensions.cs │ ├── ResourceDictionaryExtensions.g.cs │ ├── Resources │ │ ├── Noto │ │ │ ├── NotoSans-Bold.ttf │ │ │ ├── NotoSans-BoldItalic.ttf │ │ │ ├── NotoSans-Italic.ttf │ │ │ ├── NotoSans-Regular.ttf │ │ │ └── OFL.txt │ │ └── Roboto │ │ │ ├── Roboto-Black.ttf │ │ │ ├── Roboto-BlackItalic.ttf │ │ │ ├── Roboto-Bold.ttf │ │ │ ├── Roboto-BoldItalic.ttf │ │ │ ├── Roboto-Italic.ttf │ │ │ ├── Roboto-Light.ttf │ │ │ ├── Roboto-LightItalic.ttf │ │ │ ├── Roboto-Medium.ttf │ │ │ ├── Roboto-MediumItalic.ttf │ │ │ ├── Roboto-Regular.ttf │ │ │ ├── Roboto-Thin.ttf │ │ │ ├── Roboto-ThinItalic.ttf │ │ │ ├── RobotoCondensed-Bold.ttf │ │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ │ ├── RobotoCondensed-Italic.ttf │ │ │ ├── RobotoCondensed-Light.ttf │ │ │ ├── RobotoCondensed-LightItalic.ttf │ │ │ └── RobotoCondensed-Regular.ttf │ ├── Ripple.cs │ ├── RippleAssist.cs │ ├── RobotoFontExtension.cs │ ├── ScaleHelper.cs │ ├── ScaleHost.cs │ ├── Screen.cs │ ├── ScrollViewerAssist.cs │ ├── ScrollbarAssist.cs │ ├── ShadowAssist.cs │ ├── SliderAssist.cs │ ├── SmartHint.cs │ ├── Snackbar.cs │ ├── SnackbarMessage.cs │ ├── SnackbarMessageEventArgs.cs │ ├── SnackbarMessageQueue.cs │ ├── SnackbarMessageQueueItem.cs │ ├── Spelling.cs │ ├── SplitButton.cs │ ├── StringExtensions.cs │ ├── TabAssist.cs │ ├── TextBlockAssist.cs │ ├── TextFieldAssist.cs │ ├── Theme.cs │ ├── Theme.g.cs │ ├── ThemeAssist.cs │ ├── ThemeChangedEventArgs.cs │ ├── ThemeColorReference.cs │ ├── ThemeExtensions.cs │ ├── ThemeExtensions.g.cs │ ├── Themes │ │ ├── Generic.xaml │ │ ├── Internal │ │ │ ├── BaseThemeColors.cs │ │ │ └── MaterialDesignTheme.BaseThemeColors.xaml │ │ ├── MaterialDesign2.Defaults.xaml │ │ ├── MaterialDesign3.Defaults.xaml │ │ ├── MaterialDesign3.Font.xaml │ │ ├── MaterialDesign3.NavigationBar.xaml │ │ ├── MaterialDesign3.NavigationDrawer.xaml │ │ ├── MaterialDesign3.NavigationRail.xaml │ │ ├── MaterialDesign3.Slider.xaml │ │ ├── MaterialDesign3.TextBlock.xaml │ │ ├── MaterialDesign3.ToggleButton.xaml │ │ ├── MaterialDesign3.Window.xaml │ │ ├── MaterialDesignTheme.AutoSuggestBox.xaml │ │ ├── MaterialDesignTheme.Badged.xaml │ │ ├── MaterialDesignTheme.Button.xaml │ │ ├── MaterialDesignTheme.Calendar.xaml │ │ ├── MaterialDesignTheme.Card.xaml │ │ ├── MaterialDesignTheme.CheckBox.xaml │ │ ├── MaterialDesignTheme.Chip.xaml │ │ ├── MaterialDesignTheme.Clock.xaml │ │ ├── MaterialDesignTheme.ColorPicker.xaml │ │ ├── MaterialDesignTheme.ComboBox.xaml │ │ ├── MaterialDesignTheme.Dark.xaml │ │ ├── MaterialDesignTheme.DataGrid.ComboBox.xaml │ │ ├── MaterialDesignTheme.DataGrid.xaml │ │ ├── MaterialDesignTheme.DatePicker.xaml │ │ ├── MaterialDesignTheme.DialogHost.xaml │ │ ├── MaterialDesignTheme.Expander.xaml │ │ ├── MaterialDesignTheme.Flipper.xaml │ │ ├── MaterialDesignTheme.FlipperClassic.xaml │ │ ├── MaterialDesignTheme.Font.xaml │ │ ├── MaterialDesignTheme.GridSplitter.xaml │ │ ├── MaterialDesignTheme.GroupBox.xaml │ │ ├── MaterialDesignTheme.Hyperlink.xaml │ │ ├── MaterialDesignTheme.Label.xaml │ │ ├── MaterialDesignTheme.Light.xaml │ │ ├── MaterialDesignTheme.ListBox.xaml │ │ ├── MaterialDesignTheme.ListView.xaml │ │ ├── MaterialDesignTheme.Menu.xaml │ │ ├── MaterialDesignTheme.NumericUpDown.xaml │ │ ├── MaterialDesignTheme.ObsoleteBrushes.xaml │ │ ├── MaterialDesignTheme.ObsoleteStyles.xaml │ │ ├── MaterialDesignTheme.PasswordBox.xaml │ │ ├── MaterialDesignTheme.PopupBox.xaml │ │ ├── MaterialDesignTheme.ProgressBar.xaml │ │ ├── MaterialDesignTheme.RadioButton.xaml │ │ ├── MaterialDesignTheme.RatingBar.xaml │ │ ├── MaterialDesignTheme.RichTextBox.xaml │ │ ├── MaterialDesignTheme.ScrollBar.xaml │ │ ├── MaterialDesignTheme.ScrollViewer.xaml │ │ ├── MaterialDesignTheme.Shadows.xaml │ │ ├── MaterialDesignTheme.Slider.xaml │ │ ├── MaterialDesignTheme.SmartHint.xaml │ │ ├── MaterialDesignTheme.Snackbar.xaml │ │ ├── MaterialDesignTheme.SplitButton.xaml │ │ ├── MaterialDesignTheme.TabControl.xaml │ │ ├── MaterialDesignTheme.TextBlock.xaml │ │ ├── MaterialDesignTheme.TextBox.xaml │ │ ├── MaterialDesignTheme.Thumb.xaml │ │ ├── MaterialDesignTheme.TimePicker.xaml │ │ ├── MaterialDesignTheme.ToggleButton.xaml │ │ ├── MaterialDesignTheme.ToolBar.xaml │ │ ├── MaterialDesignTheme.ToolBarTray.xaml │ │ ├── MaterialDesignTheme.ToolTip.xaml │ │ ├── MaterialDesignTheme.TreeListView.xaml │ │ ├── MaterialDesignTheme.TreeView.xaml │ │ ├── MaterialDesignTheme.ValidationErrorTemplate.xaml │ │ ├── MaterialDesignTheme.Window.xaml │ │ └── ObsoleteConverters.xaml │ ├── TimeChangedEventArgs.cs │ ├── TimePicker.cs │ ├── TimePickerAssist.cs │ ├── TimePickerTextBox.cs │ ├── ToggleButtonAssist.cs │ ├── ToolTipAssist.cs │ ├── TransitionAssist.cs │ ├── Transitions │ │ ├── CircleWipe.cs │ │ ├── FadeWipe.cs │ │ ├── ITransitionEffect.cs │ │ ├── ITransitionEffectSubject.cs │ │ ├── ITransitionWipe.cs │ │ ├── IZIndexController.cs │ │ ├── IndexedItemOffsetMultiplierExtension.cs │ │ ├── SlideDirection.cs │ │ ├── SlideOutWipe.cs │ │ ├── SlideWipe.cs │ │ ├── TransitionEffect.cs │ │ ├── TransitionEffectBase.cs │ │ ├── TransitionEffectExtension.cs │ │ ├── TransitionEffectKind.cs │ │ ├── TransitionEffectTypeConverter.cs │ │ ├── Transitioner.cs │ │ ├── TransitionerSlide.cs │ │ ├── TransitionerSlideState.cs │ │ ├── TransitioningContent.cs │ │ └── TransitioningContentBase.cs │ ├── TreeHelper.cs │ ├── TreeListView.cs │ ├── TreeListViewItem.cs │ ├── TreeViewAssist.cs │ ├── Underline.cs │ ├── UpDownBase.cs │ ├── ValidationAssist.cs │ ├── VisualStudioToolsManifest.xml │ └── VisualTreeExtensions.cs ├── MaterialDesignToolkit.ResourceGeneration │ ├── Brushes.cs │ ├── Icon.cs │ ├── IconDataFactorySyntaxRewriter.cs │ ├── IconDiff.cs │ ├── IconThing.cs │ ├── MaterialColourSwatchesSnippet.xml │ ├── MaterialDesignTheme.ObsoleteBrushes.xaml │ ├── MaterialDesignToolkit.ResourceGeneration.csproj │ ├── MdPalette.cs │ ├── PackIconDataFactory.template.cs │ ├── PackIconKind.template.cs │ ├── Palette.json │ ├── PathHelper.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── RecommendedPrimaryTemplate.xaml │ ├── RecommendedSecondaryTemplate.xaml │ ├── ThemeColors.json │ └── TreeItem.cs ├── Shims │ ├── IsExternalInit.cs │ └── MathCompat.cs └── web │ ├── PaletteBuilder.html │ ├── images │ ├── Cards.png │ ├── ClockDemo.gif │ ├── DatePicker.gif │ ├── Dialogs.gif │ ├── Dialogs.png │ ├── FieldsDemo.gif │ ├── MD4XAML.png │ ├── MD4XAML.psd │ ├── MD4XAML.xcf │ ├── MD4XAML100.png │ ├── MD4XAML128.png │ ├── MD4XAML28.png │ ├── MD4XAML32.png │ ├── MD4XAML64.png │ ├── MD4XAMLclipped.png │ ├── MashUp.gif │ ├── MashUp_2016_01_31.gif │ ├── MaterialDesign.MahApps.png │ ├── MaterialDesign.MahApps.xcf │ ├── MenusDemo.jpg │ ├── MultiFloatingActionButton.gif │ ├── SliderDemo.gif │ ├── modern-wpf.png │ ├── modern-wpf.xcf │ ├── screen-buttons.png │ ├── screen-cards.png │ ├── screen-chips.png │ ├── screen-colortools.png │ ├── screen-colorzones.png │ ├── screen-comboboxes.png │ ├── screen-datagrid.png │ ├── screen-dialogs.png │ ├── screen-elevation.png │ ├── screen-fields.png │ ├── screen-groupbox.png │ ├── screen-home.png │ ├── screen-iconpack.png │ ├── screen-lists.png │ ├── screen-menutoolbar.png │ ├── screen-palette.png │ ├── screen-pickers.png │ ├── screen-progress.png │ ├── screen-sliders.png │ ├── screen-snackbars.png │ ├── screen-toggles.png │ ├── screen-treeview.png │ ├── screen-typography.png │ ├── transitions-preview.gif │ └── wikiscreen-quickstart.png │ ├── jsx │ └── PaletteBuilder.js │ ├── scripts │ ├── PaletteBuilder.js │ ├── Swatches.js │ ├── react.js │ └── react.min.js │ └── styles │ └── style.css └── tests ├── MaterialColorUtilities.Tests ├── BlendTests.cs ├── ColorUtilsTests.cs ├── ContrastConstraintTests.cs ├── ContrastTests.cs ├── DislikeAnalyzerTests.cs ├── DynamicSchemeTests.cs ├── HctTests.cs ├── MaterialColorUtilities.Tests.csproj ├── MaterialDynamicColorsTests.cs ├── MathUtilsTests.cs ├── QuantizerCelebiTests.cs ├── QuantizerWsMeansTests.cs ├── QuantizerWuTests.cs ├── SchemeMonochromeTests.cs ├── ScoreTests.cs ├── TemperatureCacheTests.cs └── TonalPaletteTests.cs ├── MaterialDesignColors.Wpf.Tests ├── ColorAssistTests.cs ├── MaterialDesignColors.Wpf.Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── ResourceProviderFixture.cs ├── MaterialDesignThemes.UITests ├── AllStyles.cs ├── MaterialDesignSpec.cs ├── MaterialDesignThemes.UITests.csproj ├── Samples │ ├── AutoSuggestBoxes │ │ ├── AutoSuggestTextBoxWithCollectionView.xaml │ │ ├── AutoSuggestTextBoxWithCollectionView.xaml.cs │ │ ├── AutoSuggestTextBoxWithInteractiveTemplate.xaml │ │ ├── AutoSuggestTextBoxWithInteractiveTemplate.xaml.cs │ │ ├── AutoSuggestTextBoxWithTemplate.xaml │ │ └── AutoSuggestTextBoxWithTemplate.xaml.cs │ ├── DialogHost │ │ ├── ClosingEventCounter.xaml │ │ ├── ClosingEventCounter.xaml.cs │ │ ├── ClosingEventViewModel.cs │ │ ├── LoadAndUnloadControl.xaml │ │ ├── LoadAndUnloadControl.xaml.cs │ │ ├── RestoreFocus.xaml │ │ ├── RestoreFocus.xaml.cs │ │ ├── RestoreFocusDisabled.xaml │ │ ├── RestoreFocusDisabled.xaml.cs │ │ ├── WithComboBox.xaml │ │ ├── WithComboBox.xaml.cs │ │ ├── WithCounter.xaml │ │ └── WithCounter.xaml.cs │ ├── DrawerHost │ │ ├── CancellingDrawerHost.xaml │ │ └── CancellingDrawerHost.xaml.cs │ ├── PasswordBox │ │ ├── BoundPasswordBox.xaml │ │ ├── BoundPasswordBox.xaml.cs │ │ ├── BoundPasswordBoxViewModel.cs │ │ ├── BoundPasswordBoxWindow.xaml │ │ └── BoundPasswordBoxWindow.xaml.cs │ ├── PopupBox │ │ ├── PopupBoxWithTemplateSelector.xaml │ │ └── PopupBoxWithTemplateSelector.xaml.cs │ ├── SplitButton │ │ ├── SplitButtonWithCommandBinding.xaml │ │ ├── SplitButtonWithCommandBinding.xaml.cs │ │ ├── SplitButtonWithCommandBindingWindow.xaml │ │ └── SplitButtonWithCommandBindingWindow.xaml.cs │ ├── Theme │ │ ├── ColorAdjustWindow.xaml │ │ └── ColorAdjustWindow.xaml.cs │ ├── UpDownControls │ │ ├── BoundNumericUpDown.xaml │ │ ├── BoundNumericUpDown.xaml.cs │ │ └── BoundNumericUpDownViewModel.cs │ └── Validation │ │ ├── ValidationUpdates.xaml │ │ └── ValidationUpdates.xaml.cs ├── TUnit │ └── IsCloseToExtensions.cs ├── TestBase.cs ├── WPF │ ├── AutoSuggestBoxes │ │ └── AutoSuggestTextBoxTests.cs │ ├── Buttons │ │ ├── OutlineButtonTests.cs │ │ └── RaisedButtonTests.cs │ ├── Cards │ │ ├── ElevatedCardTests.cs │ │ └── OutlinedCardTests.cs │ ├── ColorPickerTests.cs │ ├── ColorZones │ │ └── ColorZoneTests.cs │ ├── ComboBoxes │ │ └── ComboBoxTests.cs │ ├── ContentControls │ │ └── ContentControlTests.cs │ ├── DatePickers │ │ └── DatePickerTests.cs │ ├── DialogHosts │ │ └── DialogHostTests.cs │ ├── DrawerHosts │ │ └── DrawerHostTests.cs │ ├── Flippers │ │ └── ClassicFlipperTests.cs │ ├── ListBoxes │ │ └── ListBoxTests.cs │ ├── PasswordBoxes │ │ └── PasswordBoxTests.cs │ ├── PopupBoxes │ │ └── PopupBoxTests.cs │ ├── SnackBars │ │ └── SnackBarTests.cs │ ├── SplitButtons │ │ └── SplitButtonTests.cs │ ├── TabControls │ │ └── TabControlTests.cs │ ├── TextBoxes │ │ ├── MaterialDesignTextBox.cs │ │ └── TextBoxTests.cs │ ├── TextFieldDefaultHeightTests.cs │ ├── Theme │ │ ├── ColorAdjustTests.cs │ │ ├── ThemeTests.cs │ │ └── ThemeTests.g.cs │ ├── TimePickers │ │ ├── MaterialDesignTimePicker.cs │ │ └── TimePickerTests.cs │ ├── ToolBars │ │ └── ToolBarTests.cs │ ├── TreeListViews │ │ ├── TestableCollection.cs │ │ ├── TreeItem.cs │ │ ├── TreeListViewDataBinding.xaml │ │ ├── TreeListViewDataBinding.xaml.cs │ │ ├── TreeListViewExtensions.cs │ │ ├── TreeListViewImplicitTemplate.xaml │ │ ├── TreeListViewImplicitTemplate.xaml.cs │ │ ├── TreeListViewTemplateSelector.xaml │ │ ├── TreeListViewTemplateSelector.xaml.cs │ │ ├── TreeListViewTests.cs │ │ ├── TreeListViewWithCollectionView.xaml │ │ └── TreeListViewWithCollectionView.xaml.cs │ ├── TreeViews │ │ └── TreeViewTests.cs │ └── UpDownControls │ │ ├── DecimalUpDownTests.cs │ │ └── NumericUpDownTests.cs └── XamlTestExtensions.cs └── MaterialDesignThemes.Wpf.Tests ├── AdornerExtensionsTests.cs ├── AllStyles.cs ├── BundledThemeTests.cs ├── ButtonProgressAssistTests.cs ├── CalendarFormatInfoTests.cs ├── CheckBoxAssistTests.cs ├── ClockTests.cs ├── ColorPickerTests.cs ├── Converters ├── AutomationPropertiesNameConverterTests.cs ├── BrushOpacityConverterTests.cs ├── DoubleToCornerRadiusConverterTests.cs ├── MathConverterTests.cs ├── MathMultipleConverterTests.cs └── SliderToolTipConverterTests.cs ├── CustomColorThemeTests.cs ├── DataGridAssistTests.cs ├── DialogHostTests.cs ├── DrawerHostTests.cs ├── EnumDataAttribute.cs ├── FlipperAssistTests.cs ├── Internal └── TreeListViewItemsCollectionTests.cs ├── LabelTests.cs ├── MaterialDesignThemes.Wpf.Tests.csproj ├── MdixHelper.cs ├── PackIconTests.cs ├── PopupBoxTests.cs ├── Properties └── AssemblyInfo.cs ├── RatingBarTests.cs ├── SnackbarMessageQueueItemTests.cs ├── SnackbarMessageQueueTests.cs ├── TextBlockTests.cs ├── TextBoxTests.cs ├── ThemeTests.cs ├── TimePickerUnitTests.cs ├── TransitionerTests.cs ├── TreeViewTests.cs └── VisualTreeHelper.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/build_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/build_artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/control_styles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/control_styles.yml -------------------------------------------------------------------------------- /.github/workflows/generate_contributors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/generate_contributors.yml -------------------------------------------------------------------------------- /.github/workflows/get_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/get_versions.yml -------------------------------------------------------------------------------- /.github/workflows/icon_update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/icon_update.yml -------------------------------------------------------------------------------- /.github/workflows/nightly_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/nightly_release.yml -------------------------------------------------------------------------------- /.github/workflows/pr_verification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/pr_verification.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale_issues_and_prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.github/workflows/stale_issues_and_prs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/Directory.packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /MaterialDesignToolkit.Full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/MaterialDesignToolkit.Full.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/README.md -------------------------------------------------------------------------------- /Settings.XamlStyler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/Settings.XamlStyler -------------------------------------------------------------------------------- /docs/Freezable_Object_for_Enhanced_Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/docs/Freezable_Object_for_Enhanced_Performance.md -------------------------------------------------------------------------------- /docs/Optimize_UI_Thread_Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/docs/Optimize_UI_Thread_Performance.md -------------------------------------------------------------------------------- /docs/Optimizing-WPF-Rendering-Performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/docs/Optimizing-WPF-Rendering-Performance.md -------------------------------------------------------------------------------- /docs/Reducing_Layout_Complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/docs/Reducing_Layout_Complexity.md -------------------------------------------------------------------------------- /docs/rendering-performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/docs/rendering-performance.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/global.json -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/nuget.config -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/AnotherCommandImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/AnotherCommandImplementation.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/App.config -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/App.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/App.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Dialogs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Dialogs.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Dialogs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Dialogs.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/DialogsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/DialogsViewModel.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/FlyoutContent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/FlyoutContent.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/FlyoutContent.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/FlyoutContent.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Mah.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Mah.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Mah.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Mah.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/MahAppsDragablzDemo.csproj -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/MahViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/MahViewModel.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/MainWindow.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/NotEmptyValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/NotEmptyValidationRule.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/PaletteSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/PaletteSelector.xaml -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/PaletteSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/PaletteSelector.xaml.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/PaletteSelectorViewModel.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/Resources/ProfilePic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/Resources/ProfilePic.jpg -------------------------------------------------------------------------------- /src/MahMaterialDragablzMashUp/XamlDisplayEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MahMaterialDragablzMashUp/XamlDisplayEx.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/App.config -------------------------------------------------------------------------------- /src/MainDemo.Wpf/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/App.manifest -------------------------------------------------------------------------------- /src/MainDemo.Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/App.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/App.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ButtonAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ButtonAssist.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Buttons.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Buttons.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Buttons.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Cards.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Cards.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Cards.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Cards.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Chips.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Chips.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Chips.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Chips.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ColorTool.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ColorTool.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ColorTool.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ColorTool.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ColorZones.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ColorZones.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ColorZones.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ColorZones.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ComboBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ComboBoxes.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ComboBoxes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ComboBoxes.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/DataGrids.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/DataGrids.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/DataGrids.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/DataGrids.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Dialogs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Dialogs.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Dialogs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Dialogs.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DemoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DemoItem.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DialogsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DialogsViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DocumentationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DocumentationLink.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DocumentationLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DocumentationLinkType.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DocumentationLinks.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DocumentationLinks.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/DocumentationLinks.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/FieldsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/FieldsViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/FutureDateValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/FutureDateValidationRule.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/IconPackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/IconPackViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/IsCheckedValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/IsCheckedValidationRule.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/Link.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/ListsAndGridsViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/NotEmptyValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/NotEmptyValidationRule.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/PaletteSelectorViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/PickersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/PickersViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/Sample4Dialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/Sample4Dialog.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/Sample4Dialog.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleDialog.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleDialog.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleDialogViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleMessageDialog.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SampleProgressDialog.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SelectableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SelectableViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SimpleDataTemplateSelector.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SimpleDateValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SimpleDateValidationRule.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SlidersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SlidersViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/SmartHintViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/SmartHintViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/TabsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/TabsViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/ThemeSettingsViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Domain/TreesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Domain/TreesViewModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Drawers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Drawers.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Drawers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Drawers.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Elevation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Elevation.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Elevation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Elevation.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Expander.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Expander.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Expander.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Fields.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Fields.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Fields.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Fields.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/FieldsLineUp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/FieldsLineUp.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/FieldsLineUp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/FieldsLineUp.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/GroupBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/GroupBoxes.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/GroupBoxes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/GroupBoxes.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Home.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Home.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/IconPack.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/IconPack.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/IconPack.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/IconPack.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/InputElementContentControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/InputElementContentControl.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Lists.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Lists.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Lists.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Lists.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/MaterialDesignDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/MaterialDesignDemo.csproj -------------------------------------------------------------------------------- /src/MainDemo.Wpf/MenusAndToolBars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/MenusAndToolBars.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/MenusAndToolBars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/MenusAndToolBars.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/NavigationRail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/NavigationRail.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/NavigationRail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/NavigationRail.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/NumericUpDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/NumericUpDown.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/NumericUpDown.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/NumericUpDown.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/PackIconKindGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/PackIconKindGroup.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Palette.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Palette.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Palette.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Palette.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/PaletteSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/PaletteSelector.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/PaletteSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/PaletteSelector.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Pickers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Pickers.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Pickers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Pickers.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/PopupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/PopupBox.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/PopupBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/PopupBox.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Progress.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Progress.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Progress.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Progress.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MainDemo.Wpf/RatingBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/RatingBar.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/RatingBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/RatingBar.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Resources/Chartridge046_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Resources/Chartridge046_small.jpg -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Resources/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Resources/Contact.png -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Resources/ProfilePic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Resources/ProfilePic.jpg -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Resources/favicon.ico -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Resources/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Resources/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ScreenGrabFromGoogle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ScreenGrabFromGoogle.gif -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Sliders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Sliders.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Sliders.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Sliders.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/SmartHint.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/SmartHint.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/SmartHint.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/SmartHint.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Snackbars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Snackbars.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Snackbars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Snackbars.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Tabs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Tabs.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Tabs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Tabs.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ThemeSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ThemeSettings.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ThemeSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ThemeSettings.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Toggles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Toggles.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Toggles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Toggles.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ToolTips.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ToolTips.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/ToolTips.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/ToolTips.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Transitions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Transitions.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Transitions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Transitions.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide1_Intro.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide2_Intro.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide3_Intro.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide6_Origins.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide7_MVVM.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide7_MasterModel.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/Slide8_Details.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/TransitionsDemo/TransitionsDemoHome.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Trees.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Trees.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Trees.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Trees.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Typography.xaml -------------------------------------------------------------------------------- /src/MainDemo.Wpf/Typography.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/Typography.xaml.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/VisualTreeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/VisualTreeUtil.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/XamlDisplayEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/XamlDisplayEx.cs -------------------------------------------------------------------------------- /src/MainDemo.Wpf/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MainDemo.Wpf/favicon.ico -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/App.config -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/App.manifest -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/App.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/App.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ButtonAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ButtonAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Buttons.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Buttons.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Buttons.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Cards.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Cards.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Cards.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Cards.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Chips.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Chips.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Chips.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Chips.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ColorScheme.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ColorTool.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ColorTool.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ColorTool.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ColorZones.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ColorZones.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ColorZones.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ComboBoxes.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/DataGrids.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/DataGrids.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/DataGrids.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Dialogs.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Dialogs.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Dialogs.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DemoItem.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DialogsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLink.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinkType.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/DocumentationLinks.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/FieldsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/IconPackViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/IsCheckedValidationRule.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/Link.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/ListsAndGridsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/NotEmptyValidationRule.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/PickersViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/Sample4Dialog.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialog.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleDialogViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleItem.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleMessageDialog.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SampleProgressDialog.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SelectableViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/SlidersViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/ThemeSettingsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Domain/TreesViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Drawers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Drawers.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Drawers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Drawers.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Elevation.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Elevation.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Elevation.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Elevation.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Expander.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Expander.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Expander.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Fields.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Fields.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Fields.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Fields.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/FieldsLineUp.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/GroupBoxes.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Home.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Home.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/IconPack.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/IconPack.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/IconPack.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/IconPack.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Lists.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Lists.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Lists.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Lists.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/MainWindow.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/MaterialDesign3Demo.csproj -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/MenusAndToolBars.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/NavigationBar.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/NavigationRail.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/PackIconKindGroup.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Palette.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Palette.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Palette.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Palette.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/PaletteHelperExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/PaletteSelector.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Pickers.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Pickers.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Pickers.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Pickers.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Progress.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Progress.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Progress.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Progress.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/RatingBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/RatingBar.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/RatingBar.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Resources/Chartridge046_small.jpg -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Resources/Contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Resources/Contact.png -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Resources/ProfilePic.jpg -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Resources/favicon.ico -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Resources/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ScreenGrabFromGoogle.gif -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Sliders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Sliders.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Sliders.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Sliders.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Snackbars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Snackbars.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Snackbars.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ThemeSettings.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Toggles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Toggles.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Toggles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Toggles.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ToolTips.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ToolTips.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/ToolTips.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/ToolTips.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Transitions.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Transitions.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Transitions.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Transitions.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide1_Intro.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide2_Intro.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide3_Intro.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/TransitionsDemo/Slide7_MVVM.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Trees.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Trees.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Trees.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Trees.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Typography.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Typography.xaml -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/Typography.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/Typography.xaml.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/XamlDisplayEx.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Demo.Wpf/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Demo.Wpf/favicon.ico -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Blend/Blend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Blend/Blend.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Hct/Cam16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Hct/Cam16.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Hct/Hct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Hct/Hct.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Hct/HctSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Hct/HctSolver.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Scheme/Scheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Scheme/Scheme.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Score/Score.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Score/Score.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Utils/ColorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Utils/ColorUtils.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.MaterialColorUtilities/Utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.MaterialColorUtilities/Utils/MathUtils.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationEndReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationEndReason.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationParameters.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationSpec.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVector.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVector1D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVector1D.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVector2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVector2D.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVector3D.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVector4D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVector4D.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVectorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVectorExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/AnimationVectorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/AnimationVectorFactory.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/ArcSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/ArcSpline.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/CubicBezierEasing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/CubicBezierEasing.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Easing.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Hermite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Hermite.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/IMotionScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/IMotionScheme.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/ITwoWayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/ITwoWayConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MonoSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MonoSpline.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Motion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Motion.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Motion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Motion.csproj -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Motion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Motion.md -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionSchemeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionSchemeContext.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionSchemeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionSchemeExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionSchemeKeyTokenExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionSchemeKeyTokenExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionSchemeKeyTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionSchemeKeyTokens.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionSchemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionSchemes.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/MotionTokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/MotionTokens.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Preconditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Preconditions.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/RepeatMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/RepeatMode.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/Repeatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/Repeatable.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/SpringConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/SpringConstants.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/SpringEstimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/SpringEstimation.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/SpringMotionSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/SpringMotionSpec.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/SpringSimulation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/SpringSimulation.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/TwoWayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/TwoWayConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesign3.Motion/VectorConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesign3.Motion/VectorConverters.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorManipulation/ColorAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorManipulation/Hsb.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorManipulation/Hsl.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorManipulation/Lab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorManipulation/Lab.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorManipulation/Xyz.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ColorPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ColorPair.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Hue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Hue.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/ISwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/ISwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/MaterialDesignColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/MaterialDesignColor.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/MaterialDesignColors.Wpf.csproj -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/MaterialDesignColors.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/MaterialDesignColors.nuspec -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/AmberSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/BlueGreySwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/BlueSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/BrownSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/CyanSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/DeepOrangeSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/DeepPurpleSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/GreenSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/GreySwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/GreySwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/IndigoSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/LightBlueSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/LightGreenSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/LimeSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/OrangeSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/PinkSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/PurpleSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/RedSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/RedSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/TealSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/TealSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Recommended/YellowSwatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/StaticResourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/StaticResourceExtension.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/Swatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/Swatch.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/SwatchHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/SwatchHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignColors.Wpf/SwatchesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignColors.Wpf/SwatchesProvider.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/ColorScheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/Domain/ButtonsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/Domain/ButtonsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/Domain/ColorToolViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/Domain/ColorToolViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/Domain/ComboBoxesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/Domain/ComboBoxesViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/Domain/ToolTipsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/Domain/ToolTipsViewModel.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/Domain/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/Domain/ViewModelBase.cs -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/MaterialDesignDemo.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/MaterialDesignDemo.Shared.csproj -------------------------------------------------------------------------------- /src/MaterialDesignDemo.Shared/PaletteHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignDemo.Shared/PaletteHelperExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/BaseThemeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/BaseThemeExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/FlyoutAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/FlyoutAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/MahAppsBundledTheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/MahAppsCustomColorTheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/MaterialDesignAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/MaterialDesignAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MaterialDesignThemes.MahApps/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.MahApps/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/AdornerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/AdornerExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/AutoSuggestBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/AutoSuggestBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Badged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Badged.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BadgedAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BadgedAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BaseTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BaseTheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BehaviorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BehaviorCollection.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Behaviors/PasswordBoxBehavior.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Behaviors/SmartHintBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Behaviors/SmartHintBehavior.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BehaviorsAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BehaviorsAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BottomDashedLineAdorner.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/BundledTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/BundledTheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ButtonAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ButtonAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ButtonProgressAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ButtonProgressAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/CalendarAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/CalendarAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/CalendarFormatInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/CalendarFormatInfo.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Card.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/CheckBoxAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/CheckBoxAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Chip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Chip.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Clock.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ClockChoiceMadeEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ClockItemButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ClockItemButton.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorAdjustment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorAdjustment.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorPicker.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorReference.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorSelection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorSelection.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorZone.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorZoneAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorZoneAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ColorZoneMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ColorZoneMode.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ComboBoxAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ComboBoxAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ComboBoxPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ComboBoxPopup.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Constants.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Contrast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Contrast.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/BooleanAllConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/BooleanConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/BorderClipConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/BrushRoundConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/ClockLineConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/CursorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/CursorConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/HsbToColorConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/IsDarkConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/MathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/MathConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/MathOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/MathOperation.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/NotConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/NotConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/NotZeroConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/PointValueConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Converters/ShadowConverter.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/CustomColorTheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/CustomColorTheme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DataGridAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DataGridAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DataGridComboBoxColumn.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DataGridTextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DataGridTextColumn.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DatePickerAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DatePickerAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DateTimeEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DateTimeEx.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DecimalUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DecimalUpDown.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogClosedEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogClosedEventHandler.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogClosingEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogClosingEventHandler.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogHost.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogHostEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogHostEx.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogOpenedEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogOpenedEventHandler.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DialogSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DialogSession.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DpiHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DrawerClosingEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DrawerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DrawerHost.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DrawerHostOpenMode.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/DrawerOpenedEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ElevationAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ElevationAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ExpanderAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ExpanderAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Flipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Flipper.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/FlipperAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/FlipperAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/FlipperClassic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/FlipperClassic.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/GridViewColumnThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/GridViewColumnThumb.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/GroupBoxAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/GroupBoxAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintProxyFabric.ComboBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintProxyFabric.PasswordBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintProxyFabric.RichTextBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintProxyFabric.TextBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/HintProxyFabric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/HintProxyFabric.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/IHintProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/IHintProxy.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/IMaterialDesignThemeDictionary.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ISnackbarMessageQueue.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/IThemeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/IThemeManager.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Internal/ClearText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Internal/ClearText.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Internal/Shims/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Internal/Shims/Index.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Internal/Shims/NotNullWhen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Internal/Shims/NotNullWhen.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ListBoxAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ListBoxAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ListBoxItemAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ListBoxItemAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ListSortDirectionIndicator.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ListViewAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ListViewAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MaterialDateDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MaterialDateDisplay.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MaterialDesignFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MaterialDesignFont.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.Wpf.csproj -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MaterialDesignThemes.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.nuspec -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MaterialDesignThemes.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MaterialDesignThemes.targets -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MenuAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MenuAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MenuItemAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MenuItemAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/MessageQueueExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/MessageQueueExtension.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/NavigationBarAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/NavigationBarAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/NavigationDrawerAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/NavigationRailAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/NavigationRailAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/NotoFontExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/NotoFontExtension.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/NumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/NumericUpDown.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PackIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PackIcon.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PackIconDataFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PackIconDataFactory.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PackIconExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PackIconExtension.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PackIconKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PackIconKind.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PaddingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PaddingMode.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Palette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Palette.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PaletteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PaletteHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PasswordBoxAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PasswordBoxAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Plane3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Plane3D.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PopupBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PopupBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PopupEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PopupEx.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PrefixSuffixHintBehavior.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/PrefixSuffixVisibility.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Properties/Resources.resx -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Properties/Settings.settings -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/RadioButtonAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/RadioButtonAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/RatingBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/RatingBar.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/RatingBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/RatingBarButton.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ResourceDictionaryExtensions.g.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Resources/Noto/NotoSans-Bold.ttf -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Resources/Noto/OFL.txt -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Ripple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Ripple.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/RippleAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/RippleAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/RobotoFontExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/RobotoFontExtension.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ScaleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ScaleHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ScaleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ScaleHost.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Screen.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ScrollViewerAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ScrollViewerAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ScrollbarAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ScrollbarAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ShadowAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ShadowAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SliderAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SliderAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SmartHint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SmartHint.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Snackbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Snackbar.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SnackbarMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SnackbarMessage.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SnackbarMessageEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SnackbarMessageQueueItem.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Spelling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Spelling.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/SplitButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/SplitButton.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/StringExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TabAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TabAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TextBlockAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TextBlockAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TextFieldAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TextFieldAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Theme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Theme.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Theme.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Theme.g.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ThemeAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ThemeAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ThemeChangedEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ThemeColorReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ThemeColorReference.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ThemeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ThemeExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ThemeExtensions.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ThemeExtensions.g.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Themes/Generic.xaml -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Themes/ObsoleteConverters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Themes/ObsoleteConverters.xaml -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TimeChangedEventArgs.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TimePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TimePicker.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TimePickerAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TimePickerAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TimePickerTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TimePickerTextBox.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ToggleButtonAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ToggleButtonAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ToolTipAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ToolTipAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TransitionAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TransitionAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/CircleWipe.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/FadeWipe.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/ITransitionWipe.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/SlideDirection.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/SlideOutWipe.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/SlideWipe.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Transitions/Transitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Transitions/Transitioner.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TreeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TreeHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TreeListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TreeListView.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TreeListViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TreeListViewItem.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/TreeViewAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/TreeViewAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/Underline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/Underline.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/UpDownBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/UpDownBase.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/ValidationAssist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/ValidationAssist.cs -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /src/MaterialDesignThemes.Wpf/VisualTreeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignThemes.Wpf/VisualTreeExtensions.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/Brushes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/Brushes.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/Icon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/Icon.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/IconDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/IconDiff.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/IconThing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/IconThing.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/MdPalette.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/MdPalette.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/Palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/Palette.json -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/PathHelper.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/Program.cs -------------------------------------------------------------------------------- /src/MaterialDesignToolkit.ResourceGeneration/TreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/MaterialDesignToolkit.ResourceGeneration/TreeItem.cs -------------------------------------------------------------------------------- /src/Shims/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/Shims/IsExternalInit.cs -------------------------------------------------------------------------------- /src/Shims/MathCompat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/Shims/MathCompat.cs -------------------------------------------------------------------------------- /src/web/PaletteBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/PaletteBuilder.html -------------------------------------------------------------------------------- /src/web/images/Cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/Cards.png -------------------------------------------------------------------------------- /src/web/images/ClockDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/ClockDemo.gif -------------------------------------------------------------------------------- /src/web/images/DatePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/DatePicker.gif -------------------------------------------------------------------------------- /src/web/images/Dialogs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/Dialogs.gif -------------------------------------------------------------------------------- /src/web/images/Dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/Dialogs.png -------------------------------------------------------------------------------- /src/web/images/FieldsDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/FieldsDemo.gif -------------------------------------------------------------------------------- /src/web/images/MD4XAML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML.png -------------------------------------------------------------------------------- /src/web/images/MD4XAML.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML.psd -------------------------------------------------------------------------------- /src/web/images/MD4XAML.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML.xcf -------------------------------------------------------------------------------- /src/web/images/MD4XAML100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML100.png -------------------------------------------------------------------------------- /src/web/images/MD4XAML128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML128.png -------------------------------------------------------------------------------- /src/web/images/MD4XAML28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML28.png -------------------------------------------------------------------------------- /src/web/images/MD4XAML32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML32.png -------------------------------------------------------------------------------- /src/web/images/MD4XAML64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAML64.png -------------------------------------------------------------------------------- /src/web/images/MD4XAMLclipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MD4XAMLclipped.png -------------------------------------------------------------------------------- /src/web/images/MashUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MashUp.gif -------------------------------------------------------------------------------- /src/web/images/MashUp_2016_01_31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MashUp_2016_01_31.gif -------------------------------------------------------------------------------- /src/web/images/MaterialDesign.MahApps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MaterialDesign.MahApps.png -------------------------------------------------------------------------------- /src/web/images/MaterialDesign.MahApps.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MaterialDesign.MahApps.xcf -------------------------------------------------------------------------------- /src/web/images/MenusDemo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MenusDemo.jpg -------------------------------------------------------------------------------- /src/web/images/MultiFloatingActionButton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/MultiFloatingActionButton.gif -------------------------------------------------------------------------------- /src/web/images/SliderDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/SliderDemo.gif -------------------------------------------------------------------------------- /src/web/images/modern-wpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/modern-wpf.png -------------------------------------------------------------------------------- /src/web/images/modern-wpf.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/modern-wpf.xcf -------------------------------------------------------------------------------- /src/web/images/screen-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-buttons.png -------------------------------------------------------------------------------- /src/web/images/screen-cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-cards.png -------------------------------------------------------------------------------- /src/web/images/screen-chips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-chips.png -------------------------------------------------------------------------------- /src/web/images/screen-colortools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-colortools.png -------------------------------------------------------------------------------- /src/web/images/screen-colorzones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-colorzones.png -------------------------------------------------------------------------------- /src/web/images/screen-comboboxes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-comboboxes.png -------------------------------------------------------------------------------- /src/web/images/screen-datagrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-datagrid.png -------------------------------------------------------------------------------- /src/web/images/screen-dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-dialogs.png -------------------------------------------------------------------------------- /src/web/images/screen-elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-elevation.png -------------------------------------------------------------------------------- /src/web/images/screen-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-fields.png -------------------------------------------------------------------------------- /src/web/images/screen-groupbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-groupbox.png -------------------------------------------------------------------------------- /src/web/images/screen-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-home.png -------------------------------------------------------------------------------- /src/web/images/screen-iconpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-iconpack.png -------------------------------------------------------------------------------- /src/web/images/screen-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-lists.png -------------------------------------------------------------------------------- /src/web/images/screen-menutoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-menutoolbar.png -------------------------------------------------------------------------------- /src/web/images/screen-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-palette.png -------------------------------------------------------------------------------- /src/web/images/screen-pickers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-pickers.png -------------------------------------------------------------------------------- /src/web/images/screen-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-progress.png -------------------------------------------------------------------------------- /src/web/images/screen-sliders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-sliders.png -------------------------------------------------------------------------------- /src/web/images/screen-snackbars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-snackbars.png -------------------------------------------------------------------------------- /src/web/images/screen-toggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-toggles.png -------------------------------------------------------------------------------- /src/web/images/screen-treeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-treeview.png -------------------------------------------------------------------------------- /src/web/images/screen-typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/screen-typography.png -------------------------------------------------------------------------------- /src/web/images/transitions-preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/transitions-preview.gif -------------------------------------------------------------------------------- /src/web/images/wikiscreen-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/images/wikiscreen-quickstart.png -------------------------------------------------------------------------------- /src/web/jsx/PaletteBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/jsx/PaletteBuilder.js -------------------------------------------------------------------------------- /src/web/scripts/PaletteBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/scripts/PaletteBuilder.js -------------------------------------------------------------------------------- /src/web/scripts/Swatches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/scripts/Swatches.js -------------------------------------------------------------------------------- /src/web/scripts/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/scripts/react.js -------------------------------------------------------------------------------- /src/web/scripts/react.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/scripts/react.min.js -------------------------------------------------------------------------------- /src/web/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/src/web/styles/style.css -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/BlendTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/BlendTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/ColorUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/ColorUtilsTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/ContrastTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/ContrastTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/DislikeAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/DislikeAnalyzerTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/DynamicSchemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/DynamicSchemeTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/HctTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/HctTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/MathUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/MathUtilsTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/QuantizerCelebiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/QuantizerCelebiTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/QuantizerWsMeansTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/QuantizerWsMeansTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/QuantizerWuTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/QuantizerWuTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/SchemeMonochromeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/SchemeMonochromeTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/ScoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/ScoreTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/TemperatureCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/TemperatureCacheTests.cs -------------------------------------------------------------------------------- /tests/MaterialColorUtilities.Tests/TonalPaletteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialColorUtilities.Tests/TonalPaletteTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignColors.Wpf.Tests/ColorAssistTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/AllStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/AllStyles.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/MaterialDesignSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/MaterialDesignSpec.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/TestBase.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/WPF/ColorPickerTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/WPF/Theme/ThemeTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.UITests/XamlTestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.UITests/XamlTestExtensions.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/AllStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/AllStyles.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/BundledThemeTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/CheckBoxAssistTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/ClockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/ClockTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/ColorPickerTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/DataGridAssistTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/DialogHostTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/DrawerHostTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/EnumDataAttribute.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/FlipperAssistTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/LabelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/LabelTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/MdixHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/MdixHelper.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/PackIconTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/PackIconTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/PopupBoxTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/RatingBarTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/TextBlockTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/TextBoxTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/ThemeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/ThemeTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/TimePickerUnitTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/TransitionerTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/TreeViewTests.cs -------------------------------------------------------------------------------- /tests/MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaterialDesignInXAML/MaterialDesignInXamlToolkit/HEAD/tests/MaterialDesignThemes.Wpf.Tests/VisualTreeHelper.cs --------------------------------------------------------------------------------