当前位置:编程学习 > C#/ASP.NET >>

vb.net 中通过Graphic怎么在原有的图片上绘制DrawLines

其他:一般Graphics都是通过控件比如Panel,PictureBox来进行绘制的,

PictureBox pb= new PictureBox();
pb.Paint +=  new System.Windows.Forms.PaintEventHandler(this.Test_Paint);

void Test_Paint(object sender, PaintEventArgs e)
{
   Graphics g = e.Graphics;
   g.DrawImage(....);
   g.DrawLine(...);
   
}

上一个:用vb.net实现将DataGridView里的数据同步显示到对应的TextBox和PictureBox上。
下一个:VB.NET winform应用程序 用户控件的自定义属性的获取问题

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,