为了账号安全,请及时绑定邮箱和手机立即绑定

请问OnPaint事件里该怎么写啊?郁闷啊~

请问OnPaint事件里该怎么写啊?郁闷啊~

繁星coding 2022-05-26 14:11:40
public partial class Form1 : Form{Bitmap topLeft;public Form1(){InitializeComponent();topLeft = new Bitmap(@"I:\新建文件夹\1.bmp");}public void Pa(Graphics g){g.DrawImage(topLeft, 90, 0, topLeft.Width, topLeft.Height);}protected override void OnPaint(PaintEventArgs e){}
查看完整描述

3 回答

?
幕布斯7119047

TA贡献1794条经验 获得超8个赞

base.OnPaint(e);
Graphics dc = e.Graphics;
//下面用dc做你想做的

查看完整回答
反对 回复 2022-05-30
?
噜噜哒

TA贡献1784条经验 获得超7个赞

你想要在OnPaint里写什么啊?
protected override void OnPaint(PaintEventArgs e)
{
Pa(e.Graphics);
}
这就画你那图

查看完整回答
反对 回复 2022-05-30
?
当年话下

TA贡献1890条经验 获得超9个赞

onpaint事件是系统程序在加载的时候自动调用的,所以你只要是在程序中的代码写正确了之后,就不用再管其他的了...

查看完整回答
反对 回复 2022-05-30
  • 3 回答
  • 0 关注
  • 150 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信