C# 中的图形面板
我不想使用“背景”属性设置图像,而是想使用面板上的 Graphics 类绘制图像。我怎样才能在 C#.Net 中做到这一点?
Instead of setting image using 'background' property, I would like to draw the image using Graphics class on a panel. How can I do it in C#.Net?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试下面的代码。
you can try following piece of code.
利用
System.Drawing.Graphics
类来绘制事物。详细信息:http://msdn.microsoft.com/en-us /library/system.drawing.graphics.aspx 与绘图
示例相关:http:// www.techotopia.com/index.php/Drawing_Graphics_in_C_Sharp
Make use of
System.Drawing.Graphics
class to draw the things.Details : http://msdn.microsoft.com/en-us/library/system.drawing.graphics.aspx related to drawing
example : http://www.techotopia.com/index.php/Drawing_Graphics_in_C_Sharp