c#语言,我想在窗体的一个Button事件调用画线的方法,调用成功了,怎么在窗体上显示出来? 10
privatevoidForm1_Load(objectsender,EventArgse){CreateLine(100,100);}privatevoidCreate...
private void Form1_Load(object sender, EventArgs e)
{
CreateLine(100,100);
}
private void CreateLine(int X, int Y)
{
Bitmap bt = new Bitmap(100, 100);
Graphics g =pictureBox1.CreateGraphics();
Pen p = new Pen(Color.Red, 1);
g.DrawLine(p, new Point(0,0), new Point(X, Y));
pictureBox1.Image = bt;
}
例如我这样的一个方法:
不行,你们说的都不行。。 展开
{
CreateLine(100,100);
}
private void CreateLine(int X, int Y)
{
Bitmap bt = new Bitmap(100, 100);
Graphics g =pictureBox1.CreateGraphics();
Pen p = new Pen(Color.Red, 1);
g.DrawLine(p, new Point(0,0), new Point(X, Y));
pictureBox1.Image = bt;
}
例如我这样的一个方法:
不行,你们说的都不行。。 展开
4个回答
展开全部
private void Form1_Load(object sender, EventArgs e)
{
// CreateLine(100,100);
}
private void button1_Click(object sender, EventArgs e)
{
CreateLine(100,100);
}
private void CreateLine(int X, int Y)
{
Bitmap bt = new Bitmap(100, 100);
Graphics g =pictureBox1.CreateGraphics();
Pen p = new Pen(Color.Red, 1);
g.DrawLine(p, new Point(0,0), new Point(X, Y));
pictureBox1.Image = bt;
}
{
// CreateLine(100,100);
}
private void button1_Click(object sender, EventArgs e)
{
CreateLine(100,100);
}
private void CreateLine(int X, int Y)
{
Bitmap bt = new Bitmap(100, 100);
Graphics g =pictureBox1.CreateGraphics();
Pen p = new Pen(Color.Red, 1);
g.DrawLine(p, new Point(0,0), new Point(X, Y));
pictureBox1.Image = bt;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在button事件中调用就ok了
private void button1_Click(object sender, EventArgs e)
{
CreateLine(100,100);
}
private void button1_Click(object sender, EventArgs e)
{
CreateLine(100,100);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-04-12
展开全部
自己就显示出来了啊
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你画了他自己就会显示出来。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询