C# 在picturebox中画线无法显示。
picturebox宽度100,在picturebox中画一条长100的线,显示没问题。假如将picturebox的宽度增加50,在画一条和picturebox等宽的线就...
picturebox宽度100,在picturebox中画一条长100的线,显示没问题。假如将picturebox的宽度增加50,在画一条和picturebox等宽的线就出问题啦。在picturebox加宽的50像素中无法显示。原来100像素的部分可以显示。
展开
2个回答
展开全部
可以这样做,加入一个timer,Interval设为10
private void button2_Click(object sender, EventArgs e)
{
pictureBox1.Width = 150;
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(new Pen(Color.Red), new Point(0, 50), new Point(pictureBox1.Width, 50));
timer1.Enabled = false;
}
效果我试了,还不错
private void button2_Click(object sender, EventArgs e)
{
pictureBox1.Width = 150;
timer1.Enabled = true;
}
private void timer1_Tick(object sender, EventArgs e)
{
Graphics g = pictureBox1.CreateGraphics();
g.DrawLine(new Pen(Color.Red), new Point(0, 50), new Point(pictureBox1.Width, 50));
timer1.Enabled = false;
}
效果我试了,还不错
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询