线条集合

发布于 2024-12-06 06:23:29 字数 234 浏览 0 评论 0原文

我必须在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-12-13 06:23:29

你使用什么类?如果您可以将画笔应用于线条,则可以创建 LinearGradientBrush 看起来像这样。您需要在相同偏移处使用不同颜色进行停靠才能进行硬更改。

例如

<Line X1="0" Y1="0" X2="100" Y2="0" StrokeThickness="5">
    <Line.Stroke>
        <LinearGradientBrush>
            <GradientStop Offset="0.3" Color="Red"/>
            <GradientStop Offset="0.3" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Green"/>
        </LinearGradientBrush>
    </Line.Stroke>
</Line>

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.

<Line X1="0" Y1="0" X2="100" Y2="0" StrokeThickness="5">
    <Line.Stroke>
        <LinearGradientBrush>
            <GradientStop Offset="0.3" Color="Red"/>
            <GradientStop Offset="0.3" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Green"/>
        </LinearGradientBrush>
    </Line.Stroke>
</Line>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文