0
如何在stimulsoft中对复选框进行更改检查?如何在stimulsoft中使用复选框
Stimulsoft.Report.Components.StiCheckBox CheckBox1 = stiReport1.GetComponents()["CheckBox1"] as Stimulsoft.Report.Components.StiCheckBox;
if (CheckBox1.CheckedValue == null || ((bool)CheckBox1.CheckedValue) == false)
{
CheckBox1.CheckedValue = true;
}
else CheckBox1.CheckedValue = false;
Invalidate();
该复选框不起作用,无法检查。我需要设置除“可编辑”之外的其他任何内容; 谢谢。