添加资源图片,获取图片实例并绘制到窗体
2020-12-13 05:20
标签:style blog color 文件 for re 项目右键属性——资源——添加资源展开——添加现有文件 paint方法中: 添加资源图片,获取图片实例并绘制到窗体,搜素材,soscw.com 添加资源图片,获取图片实例并绘制到窗体 标签:style blog color 文件 for re 原文地址:http://www.cnblogs.com/cause/p/3863968.html private void Form1_Paint(object sender, PaintEventArgs e)
{
using (Graphics g = e.Graphics)
{
g.DrawImage((Image)zhbImgConvert.Properties.Resources.ResourceManager.GetObject("_001"), 10, 70);
}
}
下一篇:JSP 的9个内置对象