Пользовательские темы для элементов управления WPF, чтобы ваше приложение выглядело лучше. Просто изменить.
Эта тема создана для того, чтобы иметь индивидуально стилизованные элементы управления для приложений WPF, что зависит от нескольких настраиваемых свойств (например, цветов и размеров), поэтому ее можно легко изменить в соответствии с требованиями проектирования.
Текущее состояние: эта версия содержит наиболее часто используемые элементы управления. Приходит больше контроля.
Дальнейшие планы по разработке и выпускам тем: обновление неполных шаблонов, добавьте еще несколько настраиваемых значений, таких как радиус углового радиуса, для управления, анимации и т. Д.
Примечание. В некоторых случаях вам может потребоваться напрямую применять стили (т.е. кнопки, тексты, окна).
<Application x:Class="ThemeWindow.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Theme_001;component/Themes/Values/Numerics.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/ColorSchemes/Light.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Icons/Icons.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Buttons.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/ContextMenu.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/DatePicker.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Form.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Menu.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Notifications.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Options.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/ProgressBar.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Scroll.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Slider.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/TabControl.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Texts.xaml"/>
<ResourceDictionary Source="/Theme_001;component/Themes/Styles/Window.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
<base:BaseWindow x:Class="ThemeWindow.Windows.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:base="clr-namespace:ThemePack.Common.Base;assembly=ThemePack.Common"
xmlns:c="clr-namespace:ThemePack.Common.AttachedProperties;assembly=ThemePack.Common"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
mc:Ignorable="d"
Closing="Window_Closing"
Title="Theme preview" Width="900" Height="600" Style="{StaticResource Window.ModalStyle.NormalStyle}" SizeToContent="Manual">
</base:BaseWindow>