在运行时应用样式到控件

你可以应用样式到 ActiveReports 中的4中控件:CheckBox, Label, TextBox, 和 ReportInfo

为了在运行时应用样式,双击报表中包含控件的区域,这样会创建一个对应于 Format 事件的处理程序。添加代码到处理程序中以便应用样式到控件。

以下的示例演示了对应于方法的代码。

粘贴以下的 Visual Basic.NET 代码到 Format 事件中。

Me.TextBox1.ClassName = "Heading1"

 

粘贴以下的 C# 代码到 Format 事件中。

this.textBox1.ClassName = "Heading1";