Files
NoBuilding/建材不燃性试验炉/App.xaml.cs
2026-01-31 09:14:24 +08:00

27 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Windows;
using DevExpress.Xpf.Core;
namespace
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
// 核心设置全局主题任选其一推荐Modern/Office2021/Metropolis
//ApplicationThemeHelper.ApplicationThemeName = Theme.MetropolisLightName; // 现代浅色(推荐,简约清爽)
//ApplicationThemeHelper.ApplicationThemeName = Theme.Office2019WhiteName; // Office2021风格贴合办公软件
ApplicationThemeHelper.ApplicationThemeName = Theme.VS2017LightName; // VS2022风格开发者友好
//ApplicationThemeHelper.ApplicationThemeName = Theme.MetropolisDarkName; // 深色主题,一键切换
}
}
}