欢迎来到电脑知识学习网,专业的电脑知识大全学习平台!

手机版

windows10切换主题-(win10怎么切换主题)

操作系统 发布时间:2022-12-08 14:02:11
windows10切换主题 (win10怎么切换主题)

DevExpress WPF拥有120+个控件和库,将帮助您交付满足甚至超出企业需求的高性能业务应用程序。通过DevExpress WPF能创建有着强大互动功能的XAML基础应用程序,这些应用程序专注于当代客户的需求和构建未来新一代支持触摸的解决方案。

DevExpress WPF组件包含超过30+个定制设计的应用主题,开发人员可以再免费的WPF Theme Designer(主题设计器)应用程序中使用这些主题而无需修改或自定义它们。

DevExpress WPF Subscription官方最新版免费下载试用,历史版本下载,在线文档和帮助文件下载-慧都网

当开发人员在应用程序中引用DevExpress WPF库时,该应用程序将应用Office2019Colorful,此主题影响所有DevExpress WPF控件和支持的标准WPF控件,开发人员可以重置应用于标准WPF控件的DevExpress主题。

支持的WPF标准控件列表

下面的标准WPF控件支持DevExpress WPF主题。

System.Windows.ButtonSystem.Windows.CheckBoxSystem.Windows.ComboBoxSystem.Windows.ComboBoxItemSystem.Windows.ContextMenu *System.Windows.ExpanderSystem.Windows.GridSplitterSystem.Windows.GroupBoxSystem.Windows.LabelSystem.Windows.ListBoxSystem.Windows.ListBoxItemSystem.Windows.Menu *System.Windows.PageSystem.Windows.PasswordBox *System.Windows.ProgressBarSystem.Windows.RadioButtonSystem.Windows.Controls.Primitives.ScrollBarSystem.Windows.ScrollViewerSystem.Windows.SeparatorSystem.Windows.SliderSystem.Windows.TabControlSystem.Windows.TabItemSystem.Windows.TextBoxSystem.Windows.ToolTipSystem.Windows.TreeViewSystem.Windows.TreeViewItem

*这些控件仅在Office2016SE、VS2017、Office2019和VS2019主题中支持。

应用一个DevExpress主题

要应用主题,必须在项目中引用主题程序集或主题NuGet包。

方法1

打开Window或User Control的快速操作或智能标记,展开ApplicationTheme下拉列表,并选择一个主题,该列表仅显示项目中引用的主题。

生成的App.config文件如下所示:

.NET

App.config

...<configuration><configSections><section name="DXThemeManager"type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"allowExeDefinition="MachineToLocalUser" requirePermission="false" /></configSections><DXThemeManager><setting name="ApplicationThemeName" serializeAs="String"><value>Office2019Colorful</value></setting></DXThemeManager></configuration>....NET Framework

App.config

<configuration><configSections><sectionGroup name="userSettings"type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" ><section name="DXThemeManager"type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"allowExeDefinition="MachineToLocalUser" requirePermission="false" /></sectionGroup></configSections><startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /></startup><userSettings><DXThemeManager><setting name="ApplicationThemeName" serializeAs="String"><value>Office2019Colorful</value></setting></DXThemeManager></userSettings></configuration>方法2

这种方法会覆盖使用方法1对App.config文件所做的更改。

1. 引用DevExpress.Data.Desktop.v22.1程序集。

2. 在应用程序启动时将ApplicationThemeHelper.ApplicationThemeName属性设置为一个主题名称。

C#

public partial class App : Application {protected override void OnStartup(StartupEventArgs e) {ApplicationThemeHelper.ApplicationThemeName = Theme.MetropolisLightName;base.OnStartup(e);}}

VB.NET

Class ApplicationProtected Overrides Sub OnStartup(e As StartupEventArgs)ApplicationThemeHelper.ApplicationThemeName = Theme.MetropolisLightNameMyBase.OnStartup(e)End SubEnd Class

提示:可以将 Ribbon Gallery 主题选择器添加到应用程序中。

应用一个DevExpress主题到容器

指定附加的ThemeManager.ThemeName属性,开发人员可以将该属性应用到DevExpress WPF控件和受支持的WPF标准控件。下面的代码示例将Office2016SEWhite主题应用到ThemedWindow,将office20119black主题应用到GridControl:

XAML

<ThemedWindow 电脑 ...xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"dx:ThemeManager.ThemeName="Office2016SEWhite"><dxg:GridControl dx:ThemeManager.ThemeName="Office2019Black">...</dxg:GridControl></ThemedWindow>

责任编辑:电脑知识学习网

操作系统