标签:listen 驱动 cdn 一起 remote 自定义主题 ons from The
转:
点击获取工具>>
DevExpress WPF v20.2附带新的Visual Studio 2019主题调色板,一个受Windows 10启发的主题以及一个可以将Windows 10强调色应用于由DevExpress驱动的WPF应用程序的调色板。
Windows 10允许您指定自定义重点色,此颜色更改应用程序整体外观。现在您可以使用v20.2将Windows 10强调色应用于WPF应用程序。
(如果您不熟悉WPF产品系列,请务必查看我们完整的WPF Themes集合)。
WPF Windows 10 Light Theme利用Windows 10的最佳可视化属性,在Windows Explorer后对该主题进行了图案化,从WinUI中添加了一些外观元素,并将其扩展到整个DevExpress WPF UI控件/工具集。
与Windows 10 Light Theme一起使用时,WPF Win10Palette允许您在WPF应用程序中复制Windows 10的外观。
WPF Win10Palette可以获取Windows 10的配色,并在用户每次更改配色时更新主题:
`protected override void OnStartup(StartupEventArgs e)
{
var accentpalette = new Win10Palette();
var customtheme = Theme.CreateTheme(accentpalette, Theme.Win10Light);
Theme.RegisterTheme(customtheme);
ApplicationThemeHelper.ApplicationThemeName = customtheme.Name;
base.OnStartup(e);
}`
您还可以指定自定义主题色,并在用户修改Windows 10主题色时禁用主题更新。 为此,只需创建一个新主题,将强调色传递给ActualAccentColor构造函数参数,然后将listenAccentColorChanges设置为false。 这将产生具有您自定义强调色的Windows 10 Light主题:
`protected override void OnStartup(StartupEventArgs e)
{
var accentpalette = new Win10Palette((Color)ColorConverter.ConvertFromString("#ffffb900"), false);
var customtheme = Theme.CreateTheme(accentpalette, Theme.Win10Light);
Theme.RegisterTheme(customtheme);
ApplicationThemeHelper.ApplicationThemeName = customtheme.Name;
base.OnStartup(e);
}`
在v20.1版本中,添加了三个受Visual Studio 2019启发的新主题。 使用v20.2,您可以将以下预定义主题应用于Visual Studio 2019启发的主题:
Blue: Latte, BlueNavy.
Dark: BlueberryCake, DeepSea, Dimmed, Sand, Storm.
Light: Berberis, Cornflower, EmeraldSea, LightLilac, Loft.
转:
标签:listen 驱动 cdn 一起 remote 自定义主题 ons from The
原文地址:https://www.cnblogs.com/wangtcc/p/14489415.html