-
Notifications
You must be signed in to change notification settings - Fork 19
Home
Sam Oates edited this page May 20, 2019
·
4 revisions
Welcome to the mui.extended.toolkit wiki!
Note: This presumes you already have ModernUI and the WPFToolkit setup in your project.
- Get the latest version from the releases page.
- Add a reference to mui.extended.toolkit.dll to your project.
- Add the following line to your app.xaml's
<MergedDictionaries>
section
<ResourceDictionary Source="/ModernUI.Xceed.Toolkit;component/Assets/ModernUI.Xceed.Toolkit.xaml" />
- Add the Nuget package https://www.nuget.org/packages/SamOatesGames.ModernUI.Xceed.Toolkit/ to your project.
- Update your app.xaml's
<ResourceDictionary>
to contain something like:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/FirstFloor.ModernUI;component/Assets/ModernUI.xaml" />
<ResourceDictionary Source="/FirstFloor.ModernUI;component/Assets/ModernUI.Dark.xaml" />
<ResourceDictionary Source="/ModernUI.Xceed.Toolkit;component/Assets/ModernUI.Xceed.Toolkit.xaml" />
</ResourceDictionary.MergedDictionaries>
<Color x:Key="AccentColor">#FFAA0000</Color>
</ResourceDictionary>
</Application.Resources>