111,126
社区成员
发帖
与我相关
我的任务
分享
private void button1_Click(object sender, EventArgs e)
{
Graphics g = this.CreateGraphics();
SolidBrush b = new SolidBrush(Color.Red);
g.FillRectangle(b, 0, 0, 100, 100);//你只需在这里改变区域即可
}