Page 1 of 1

Hide statusbar in StiWpfViewerControl

Posted: Wed Jan 10, 2024 12:16 pm
by MarcoFish
Hi,

I'd like to completly hide the statusbar in StiWpfViewerControl. I have set ShowStatusBar=False and StatusBarVisibility=Hidden but still you can see the reserved space for the statusbar.
Please refer to the attached screenshot. There you can see the orange bar at the bottom. This is where the statusbar would be visible. I'd like to remove this bar completly.

This is a snippet from my xaml
<wpfViewer:StiWpfViewerControl
Grid.Row="1"
ShowStatusBar="False"
StatusBarVisibility="Hidden"
ShowMainToolBar="False"
Report="{Binding Report, ElementName=UC}"
x:Name="ReportViewer" />

Working on NuGet package Stimulsoft.Reports.Wpf 2024.1.2

Re: Hide statusbar in StiWpfViewerControl

Posted: Wed Jan 10, 2024 10:14 pm
by Lech Kulikowski
Hello,

You should use the following code:
ReportViewer.DockPanelBottom.Visibility = Visibility.Collapsed;

Thank you.