如何更改文本组件的填充颜色?
我尝试过这样的事情:
Text1.Fill = Color.Black;
Text2.Fill = Color.White;
手动也无济于事。
它发出以下错误:
Error CS0029: Cannot implicitly convert type 'System.Drawing.Color' to 'FastReport.FillBase'
(39,39): Error CS0117: 'System.Drawing.Color' does not contain a definition for 'white'
(43,28): Error CS0029: Cannot implicitly convert type 'System.Drawing.Color' to 'FastReport.FillBase'
提前致谢!
答案 0 :(得分:0)
尝试:
Text1.FillColor = Color.Black;
如果“Text1”是TextObject,这应该可以。