C#中的BackgroundColor更改

时间:2016-06-21 05:08:47

标签: c# web

我正在尝试更改按钮的BackgroundColor

BtnColo = System.Drawing.ColorTranslator.FromHtml("#48BCB4");
btnAdd.BackColor = ColorTranslator.FromHtml("#48BCB4");

但它无法正常工作

1 个答案:

答案 0 :(得分:0)

这应该将您的按钮背景颜色更改为红色

yourButtonName.BackColor = Color.Red;

您需要包含 System.Drawing 命名空间,因为Color类属于该命名空间。喜欢这个

using System.Drawing;

当然,您需要在项目中添加对System.Drawing DLL的引用,以使用此命名空间和Color类。

enter image description here

Reference from here