无法将类型“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]