WPF CrystalReportsViewer:更改侧边栏的位置

时间:2017-08-23 12:33:13

标签: c# wpf xaml crystal-reports

我正在尝试更改crystalreportsviewer WPF元素中左侧栏的位置,但我不知道如何。我想把侧边栏放在顶部或底部......

enter image description here

<sap:CrystalReportsViewer
                            Name="crystalReportsViewer"
                            Width="auto"
                            Height="auto"
                            HorizontalAlignment="Center"
                            VerticalAlignment="Center"
                            ShowPrevPageButton="False"
                            ShowStatusbar="False"
                            ShowToolbar="False"
                            SourceUpdated="crystalReportsViewer_SourceUpdated"
                            TargetUpdated="crystalReportsViewer_TargetUpdated"
                            ToggleSidePanel="None" />

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:我有一个标签控件和标签项的样式......

<Style TargetType="{x:Type TabControl}">
   ...
</Style>


<Style TargetType="{x:Type TabItem}">
   ...
</Style>

我发现,tabcontrol本身的样式正在cr控件中使用,但不是tabitems的样式