C#中画一条直线完整方法

要什么graphics和pen的Penpen=newPen(Color.Pink,2);PictureBoxp1=newPictureBox();p1.Width=20;... 要什么graphics和pen的
Pen pen = new Pen(Color.Pink, 2);
PictureBox p1 = new PictureBox();
p1.Width = 20;
p1.Height = 40;
p1.Top = 100;
p1.Left = 100;
Graphics p = p1.CreateGraphics();
p.DrawLine(pen, 100, 100, 120, 100);
this.Controls.Add(p1);
为什么在form上不显示出来?
展开
 我来答
老级幸1286
2010-01-25 · TA获得超过511个赞
知道小有建树答主
回答量:756
采纳率:0%
帮助的人:382万
展开全部
写在这个事件里就可以了。
那是因为重画的原因。
private void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
g.DrawLine(Pens.Blue, new Point(0, 0), new Point(500, 500));
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
最后的仙人
2010-01-24 · TA获得超过1961个赞
知道大有可为答主
回答量:1509
采纳率:0%
帮助的人:1381万
展开全部
在Form上画直线
bool downflag = false;
Point start = new Point(0, 0);
private void Form1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
downflag = true;
start = e.Location;
}
}
Point old = new Point(0, 0);
private void DrawLine(Brush b, Point p1, Point p2)
{
Graphics g = this.CreateGraphics();
Pen p = new Pen(b);
g.DrawLine(p, p1, p2);
}
private void Form1_MouseMove(object sender, MouseEventArgs e)
{
if (downflag)
{
DrawLine(new SolidBrush(this.BackColor), start, old);
DrawLine(new SolidBrush(Color.Blue), start, e.Location);
old = e.Location;
}
}

private void Form1_MouseUp(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
DrawLine(new SolidBrush(Color.Blue), start, e.Location);
downflag = false;
old = new Point(0, 0);
start = new Point(0, 0);
}
}
Pen pen = new Pen(Color.Pink, 2);
PictureBox p1 = new PictureBox();
p1.Width = 20;
p1.Height = 40;
p1.Top = 100;
p1.Left = 100;
Graphics p = p1.CreateGraphics();
p.DrawLine(pen, 100, 100, 120, 100);
this.Controls.Add(p1);
为什么在form上不显示出来?
被显示pictureBox的行为刷新掉了吧,你延迟一点来画这条直线就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
CloudPRose
2010-01-23 · TA获得超过5175个赞
知道大有可为答主
回答量:3175
采纳率:66%
帮助的人:858万
展开全部
是GDI+,也就是.NET下的托管GDI。
using(Graphics canvas = ......) {
//...
using(Pen linePen = ...) {
canvas.DrawLine(linePen, ...);
}
}

DrawLine的定义,你自己多看看MSDN。
DrawLine(Pen pen, Point point1, Point point2)
DrawLine(Pen pen, PointF point1, PointF point2)
DrawLine(Pen pen, Int32 x1, Int32 y1, Int32 x2, Int32 y2)
DrawLine(Pen pen, Single x1, Single y1, Single x2, Single y2)
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式