111,125
社区成员
发帖
与我相关
我的任务
分享private void MakeLabelVisible()
{
/* If the panel contains label1, bring it
* to the front to make sure it is visible. */
if(panel1.Contains(label1))
{
label1.BringToFront();//利用BringToFront()方法。
}
}