我是 C# 的新手,到目前为止,我一直在四处寻找这种语言,我已经在我的任务中编写了很多程序,但现在我被一件事困住了,我无法用语言解释,但代码可以说明我的意思想要所以我们开始吧,我知道这是一个愚蠢的程序,但它仅用于教育目的:D
Private void change()
{
anycontrol.BackColor = Color.Gold; // when this function called the control's BackColor will Change to gold
}
// example
private void TextBox1_Focused(object sender, EventArgs e)
{
Change(); // this suppose to change the color of the controls which is now textbox1 i want it to work on other controls such as buttons progressbars etc
}
现在,在我解释了我的问题之后,我可能会问您是否可以提供帮助,我们将不胜感激。