gpt4 book ai didi

C# WPF 将系统颜色设置为按钮

转载 作者:太空宇宙 更新时间:2023-11-03 13:32:34 25 4
gpt4 key购买 nike

我想将按钮的背景颜色更改为系统颜色。就像我在改变按钮颜色一样

button2.Background = Brushes.Blue; 

变蓝。但不,我想将颜色更改为系统颜色。

最佳答案

您可以从 System.Windows.SystemColors 获取系统颜色

button2.Background = System.Windows.SystemColors.MenuHighlightBrush;

WPF 背景的类型为 System.Windows.Media.Brush。您可以像这样设置另一种颜色:

// using System.Windows.Media;

button2.Background = Brushes.White;

button2.Background = new SolidColorBrush(Color.White);

button2.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xFF, 0, 0);

关于C# WPF 将系统颜色设置为按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20007109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com