c# 重绘窗体 的 OnPaint事件 20
publicpartialclassForm1:Form{BitmaptopLeft;publicForm1(){InitializeComponent();topLef...
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)
{
}
OnPaint 事件里怎么写啊?郁闷死了。。 展开
{
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)
{
}
OnPaint 事件里怎么写啊?郁闷死了。。 展开
5个回答
2012-04-14
展开全部
推荐您去这看看,这样的问题都有详细的解决方法,他们的.net教程讲解的比较全,你可以去学习下,希望对你有帮助
参考资料:http://www.baidu.com/s?wd=%B1%B1%B7%E7%CD%F8&rsv_bp=0&rsv_spt=3&inputT=422
参考资料:http://www.baidu.com/s?wd=%B1%B1%B7%E7%CD%F8&rsv_bp=0&rsv_spt=3&inputT=422
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
base.OnPaint(e);
Graphics dc = e.Graphics;
//下面用dc做你想做的
Graphics dc = e.Graphics;
//下面用dc做你想做的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你想要在OnPaint里写什么啊?
protected override void OnPaint(PaintEventArgs e)
{
Pa(e.Graphics);
}
这就画你那图
protected override void OnPaint(PaintEventArgs e)
{
Pa(e.Graphics);
}
这就画你那图
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
效率很不好.因为onpaint事件会被触发n多次....
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
onpaint事件是系统程序在加载的时候自动调用的,所以你只要是在程序中的代码写正确了之后,就不用再管其他的了...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询