如何用.Net绘制单个点?
这应该很简单,但我不明白。如何在.Net 中绘制单个点?如果我使用 g.DrawLine(Black,0,0,0,0) 则不会绘制任何内容,如果我使用 g.DrawLine(Black,0,0,1,0) code> 使用带有 2 个点的行。 g.DrawRectangle
也会发生同样的情况。这让我很感兴趣。
this should be pretty simple but I don't get it. How can I draw a single point in .Net? If I use g.DrawLine(Black,0,0,0,0)
nothing is drawn and if I use g.DrawLine(Black,0,0,1,0)
a line with 2 dots is used. The same happens with g.DrawRectangle
. This has me intrigued.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是填充一个像素宽的矩形,而不是使用笔:
The easiest way is to fill a rectangle which is one pixel wide rather than using a pen: