线条集合
我必须在 WPF 中用不同颜色绘制一组线条。每个颜色部分都是一条线。
例如,我们在 x 轴上有一条从 (0,0) 到 (10,0) 的线。
我想要从 (0,0) 到 (3,0) 的红色,从 (3,0) 到 (7,0) 的绿色,从 (7,0) 到 (10,0) 的黄色。
我想把这整个事情当作一条线。我有一种方法,从这些点绘制不同的线,并为每条线提供不同的笔划。 WPF 中是否有用于收集不同颜色线条的东西。
I have to draw a collection of lines in WPF with different colors. Each color part is a line.
For Example we have a line starting from (0,0) to (10,0) on xaxis.
I want red color from (0,0) to (3,0) and green from (3,0) to (7,0) and yellow from (7,0) to (10,0).
I want to treat this whole thing as a single line . I have one way that is drawing different lines from those points and giving different strokes for each line. Is there something in WPF for collection of lines with different colors.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你使用什么类?如果您可以将画笔应用于线条,则可以创建
LinearGradientBrush
看起来像这样。您需要在相同偏移处使用不同颜色进行停靠才能进行硬更改。例如
What classes do you use? If you can apply a brush to the line you can create a
LinearGradientBrush
which looks like that. You will need stops on the same offset with different colours to get a hard change.e.g.