如题:模板设计器工具栏选项卡怎么控制显示影藏,示例代码是控制是否可用,这样会给用户带来误解去点击而又不能使用,
我想当是页面报表时区域报表和Data选项卡控件都不显示。
下面这个是示例代码控制选项卡是否可用的,有没有什么方法控制显示影藏的。
if (this.reportdesigner.ReportType == DesignerReportType.Page)
{
this.reporttoolbox.EnableCategory("Section Reports", false);
this.reporttoolbox.EnableCategory("Data", false);
this.reporttoolbox.EnableCategory("age Reports", true);
}
|