逐梦论坛's Archiver

shillan 发表于 2018-7-5 17:33

无法将类型“string”隐式转换为“System.Drawing.Color”的解决方法

[b]现象:[/b]C#的cs代码中语句
[quote]Chartlet1.Background.Paper ="#081832"; [/quote]
报错:
[quote]无法将类型“string”隐式转换为“System.Drawing.Color”[/quote]

[quote]Chartlet1.Background.Paper = Color.White; [/quote]
正常,但无法自定义颜色。
[b]解决:[/b]
[quote]Chartlet1.Background.Paper = System.Drawing.Color.FromName("#081832");[/quote]
即可。

页: [1]

Powered by Discuz! Archiver 7.2  © 2001-2009 Comsenz Inc.