C# 用点填充矩形
你好 我想填充一个矩形。通常我可以使用:
g.FillRectangle(Brushes.Green, x1, y1, x2, y2);
但我不想用绿色完全填充它,我想用点填充它 所以我想要它:一点黑,一点绿,一点黑...... 你能帮助我吗 谢谢
Hi
I want to Fill out a Rectangle. Normally i can use:
g.FillRectangle(Brushes.Green, x1, y1, x2, y2);
But I don't want to fill it completly out with a green color, I want to fill it out with points
So i want it: One point black, one point green, one point black...
Can you help me
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
HatchBrush
与
HatchStyle.Percent50
,而不是普通的绿色画笔,如下所示:有关其他填充样式的演示,请参阅 以下演示。
You'll want to use a
HatchBrush
withHatchStyle.Percent50
, instead of your normal green brush, like so:For a demo of the other hatchstyles, see the following demo.