我正在尝试更改crystalreportsviewer WPF元素中左侧栏的位置,但我不知道如何。我想把侧边栏放在顶部或底部......
<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" />
答案 0 :(得分:0)
我找到了解决方案:我有一个标签控件和标签项的样式......
<Style TargetType="{x:Type TabControl}">
...
</Style>
<Style TargetType="{x:Type TabItem}">
...
</Style>
我发现,tabcontrol本身的样式正在cr控件中使用,但不是tabitems的样式