Stimulsoft报告 - 隐藏设计器中的组件带

问题描述 投票:-1回答:1

有没有办法在Stimulsoft报表设计器中隐藏Report Title Band或任何其他乐队?

StiOptions.Designer.ComponentsTypes.Bands.ReportTitleBand.IsVisible似乎是readonly属性,还有什么我们可以使用吗?

stimulsoft
1个回答
0
投票

找到解决方案,想到在这里分享它,以便任何其他有相同问题的人都可以使用它。

您需要在InitializeComponent之前执行以下操作。

foreach (var component in StiOptions.Services.Components)
        {

            if (component.ComponentId == StiComponentId.StiReportTitleBand)
                component.ServiceEnabled = false;
        }
© www.soinside.com 2019 - 2024. All rights reserved.