C#中的Form_Load的问题
privatevoidForm1_Load(objectsender,EventArgse){Graphicsg=pictureBox1.CreateGraphics()...
private void Form1_Load(object sender, EventArgs e)
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(Pens.Black, 0, 0, 100, 100);
}
我定义了这个函数,为什么在窗体中的pictureBox里没有画图呢? 展开
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(Pens.Black, 0, 0, 100, 100);
}
我定义了这个函数,为什么在窗体中的pictureBox里没有画图呢? 展开
3个回答
展开全部
//要么在paint里面写
private void Form1_Paint(object sender, PaintEventArgs e)
{
e.Graphics.DrawLine(Pens.Red, 0, 0, 100, 100);
}
//要么确保你画的时候窗口不是最小化状态
private void button1_Click(object sender, EventArgs e)
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(Pens.Black, 0, 0, 100, 100);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询