按钮前景 - 如何轻松获取颜色?

时间:2014-08-22 07:32:44

标签: c# wpf button colors

我创建了一个画笔来为按钮前景指定颜色。但我无法弄清楚要找回颜色? 我找到了一些解决方案但是非常复杂。

我将按钮前景色设置为黑色。

现在我需要一个代码,提供一个按钮,检索颜色并返回BLACK(在本例中)。

1 个答案:

答案 0 :(得分:0)

如果要检索元素的当前颜色,只需从按钮中指定一个新的Color变量,如下所示:

Color getColor;
getColor = button1.ForeColor;
Console.WriteLine(getColor); /* To print the retrned color in the debug console */