C# 画图,同时保存为图片 Graphics g = e.Graphics
2个回答
展开全部
当事件e为System.Windows.Forms.PaintEventArgs类时是可以的
例如:
新建一个WindowsFormsApplication
在InitializeComponent()方法中添加 this.Paint+=new PaintEventHandler(Form1_Paint);
在Form1类中添加
public void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
}
这是不报错的
希望有所帮助,加油!
例如:
新建一个WindowsFormsApplication
在InitializeComponent()方法中添加 this.Paint+=new PaintEventHandler(Form1_Paint);
在Form1类中添加
public void Form1_Paint(object sender, PaintEventArgs e)
{
Graphics g = e.Graphics;
}
这是不报错的
希望有所帮助,加油!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询