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

Posted

技术标签:

【中文标题】如何删除 Crystal Report Viewer 中的主选项卡?【英文标题】:How can I remove the Main Tab in Crystal Report Viewer? 【发布时间】:2010-10-08 09:01:36 【问题描述】:

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

【问题讨论】:

为什么要删除你好和谢谢??? :-) 这是 Windows 窗体报表查看器还是 ASPNET 报表查看器? 【参考方案1】:

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;
                
            
        
    

【讨论】:

【参考方案2】:

谢谢。

在 VB 中应该是这样的:

    For Each c1 As Control In CrystalReportViewer1.Controls
        If c1.GetType Is GetType(CrystalDecisions.Windows.Forms.PageView) Then
            Dim pv As CrystalDecisions.Windows.Forms.PageView = c1
            For Each c2 As Control In pv.Controls
                If c2.GetType Is GetType(TabControl) Then
                    Dim tc As TabControl = c2
                    tc.ItemSize = New Size(0, 1)
                    tc.SizeMode = TabSizeMode.Fixed
                End If
            Next
        End If
    Next

【讨论】:

【参考方案3】:

CrystalDecisions.Web ReportViewer 解决方案

在页面中引用jquery.js并粘贴此脚本:

<script type="text/javascript">
$(document).ready(function () 
    $(".hideableFrame").hide();
);

说明

我发现 "Main Tab" 放在 &lt;tr&gt;class="hideableFrame"

<tr class="hideableFrame" valign="bottom"  style="display: table-row;">
 <td>
   <img   
    ...

我无法在css 文件中工作,因为style:display 写在元素上,所以我编写了一个脚本来更改标记为hideableFrame 的项目的可见性。

注意:class="hideableFrame" 有 4 个 -USELESS- 元素;此脚本将隐藏所有这些。

【讨论】:

【参考方案4】:

我尝试了 Emanuele Greco 的解决方案,它可以工作,但有时无法在代码中添加对 jquery 的引用。 在你的网页上试试这个

<CR:CrystalReportViewer ID="CrystalReportViewer1" 
                runat="server"
                CssClass="Report"
                 HasCrystalLogo="False" 
                 HasSearchButton="False"
                  HasToggleGroupTreeButton="False" 
                   HasZoomFactorList="False" 
                  Height="100%" Width="100%" 
                  meta:resourcekey="CrystalReportViewer1Resource1"
                  EnableDrillDown="False" 
                  ReuseParameterValuesOnRefresh="True" 
                  EnableToolTips="False" ToolPanelView="None" HasDrilldownTabs="False" 
                    HasDrillUpButton="False" /> 

【讨论】:

在没有 JQuery 的情况下开发 Web 应用程序非常困难,原因有很多,不仅仅是为了隐藏 Main Tab。无论如何,在这种情况下,我使用 Jeff Roe 解决方案【参考方案5】:
            foreach (Control control in crystalReportViewer1.Controls)
            

                if (control is CrystalDecisions.Windows.Forms.PageView)
                

                    TabControl tab = (TabControl)(CrystalDecisions.Windows.Forms.PageView)control).Controls[0];

                    tab.ItemSize = new Size(0, 1);

                    tab.SizeMode = TabSizeMode.Fixed;

                    tab.Appearance = TabAppearance.Buttons;

                

            

【讨论】:

【参考方案6】:

在 CrystalReportViewer 控件中设置 HasDrilldownTabs="false"

【讨论】:

【参考方案7】:

crystalReportViewer1.DisplayStatusBar = false;

【讨论】:

以上是关于如何删除 Crystal Report Viewer 中的主选项卡?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Crystal Report 中获取日期范围的每周或 7 天

如何将此 Crystal Report 公式编写为 s-s-rS 表达式?

如何在 C# 中使用特定的 INNER JOIN 查询和条件制作 Crystal Report

隐藏或禁用 Crystal Report 参数面板

Crystal Report简单计数器1到15

动态更改Crystal Report的连接