gpt4 book ai didi

c# - 我怎样才能在 OxyPlot 中获得所有颜色?

转载 作者:太空宇宙 更新时间:2023-11-03 14:44:53 25 4
gpt4 key购买 nike

我有一个问题。我在 WPF、C# 中使用 OxyPlot。我需要将所有颜色都添加到 MarkerType 和 MarkerStroke 以用于系列。我怎样才能得到所有的颜色?

最佳答案

Green、IndianRed 等是静态 OxyColors 类中的静态字段。使用 阅读所有内容

var colors = typeof(OxyColors)
.GetFields(BindingFlags.Static | BindingFlags.Public)
.Where(f => f.FieldType == typeof(OxyColor))
.Select(f => f.GetValue(null))
.Cast<OxyColor>()
.ToList();

关于c# - 我怎样才能在 OxyPlot 中获得所有颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54906806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com