当前位置:  开发笔记 > 编程语言 > 正文

如何删除Crystal Report Viewer中的Main选项卡?

如何解决《如何删除CrystalReportViewer中的Main选项卡?》经验,为你挑选了1个好方法。

如何删除或隐藏Crystal Report Viewer(C#)中的主选项卡部分.



1> Jeff Roe..:

Omid的答案是正确的,但是在设置了查看器的ReportSource之后,你必须确保做到这一点.我下面的函数中的版本更加强大,并且使得更清晰,但我仍然不确定为什么对TabControl的ItemSize和SizeMode做一些魔术会使标签栏消失.

// This is a method of a Form with one of these:
//     CrystalDecisions.Windows.Forms.CrystalReportViewer
// This hides the tab control with the "Main Report" button.
public void hideTheTabControl()
{
    System.Diagnostics.Debug.Assert(
        crystalReportViewer1.ReportSource != null, 
        "you have to set the ReportSource first");

    foreach (Control c1 in crystalReportViewer1.Controls)
    {
        if (c1 is CrystalDecisions.Windows.Forms.PageView)
        {
            PageView pv = (PageView)c1;
            foreach (Control c2 in pv.Controls)
            {
                if (c2 is TabControl)
                {
                    TabControl tc = (TabControl)c2;
                    tc.ItemSize = new Size(0, 1);
                    tc.SizeMode = TabSizeMode.Fixed;
                }
            }
        }
    }
}

推荐阅读
Gbom2402851125
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有