更改文本字段填充颜色
Change a Text Field Fill Color
如何更改文本组件的填充颜色?
我试过这样的事情:
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'
提前致谢!
尝试:
Text1.FillColor = Color.Black;
如果 "Text1" 是一个 TextObject,这应该有效。
如何更改文本组件的填充颜色?
我试过这样的事情:
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'
提前致谢!
尝试:
Text1.FillColor = Color.Black;
如果 "Text1" 是一个 TextObject,这应该有效。