Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 C# 中制作泡泡麻烦游戏的副本。我需要在 Windows 窗体应用程序中创建游戏。
我使用 Graphics 进行绘图。在泡泡麻烦原始游戏中,箭头像波浪一样移动,而不是直线,我不知道该怎么做。
有一种方法可以在 Windows 窗体应用程序中以某种方式做到这一点?如果有办法,请解释我如何做到这一点。
谢谢你,阿萨夫。
如下创建画笔
Brush zigzagBrush = new System.Drawing.Drawing2D.HatchBrush(System.Drawing.Drawing2D.HatchStyle.ZigZag, Color.Black);
然后,您可以使用上面的画笔绘制线条
利用:
this.createGraphics.drawLines(new Point[]{});
其中点数组包含您的线角。