如何获取 ColorDialog 中使用的基本颜色的值?
我可以使用 myColorDialog.CustomColors
获取 ColorDialog
(vb.net) 中使用的自定义颜色,这将返回一个整数值颜色数组。
是否可以用类似的方法得到48种基本颜色?
I can get the custom colours used in the ColorDialog
(vb.net) by using myColorDialog.CustomColors
, which will return me an array of colours as integer values.
Is it possible to get the 48 Basic Colors in a similar way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
幸运的是,我刚刚制作了一个自定义颜色对话框。
看看你是否喜欢它..
表单代码
表单设计
Luckily I have just made a custom Color Dialog box.
See if you like it..
Form Code
Forrm DEsign
我花了很多时间寻找一种以编程方式获取基本颜色列表的方法,但没有找到这样的方法。
我当前的解决方案=):
I spent a lot of time in the search of a way to get a list of basic colors programmatically, but did not find such a method.
My current solution =) :
它们可作为 struct System.Drawing.Color 的静态属性使用。
示例:
等。
编辑:抱歉,这里的内容比对话框中的多,所以它可能不是您想要的。
They are available as static properties of the struct System.Drawing.Color
Examples:
etc.
Edit: Sorry, there are more here than in the dialog, so it may not be what you want.