摘要:
双击label下的图后,添加代码 private void pictureBox1_Paint(object sender, PaintEventArgs e) { foreach (Control C in this.Controls) { if (C is Label) { Label L = (Label)C; L.Visible = false; e.Graphics.DrawString... 阅读全文
posted @ 2010-03-21 22:20
牛博
阅读(269)
评论(0)
推荐(1)