Showing report in fullscreen mode

Stimulsoft Reports.WPF discussion
Post Reply
Irena
Posts: 9
Joined: Wed Feb 19, 2020 7:21 am

Showing report in fullscreen mode

Post by Irena »

Hello,

Is there a way for Stimulsoft report to be shown in fullscreen, over Windows task bar?

Thanks in advance for your reply.
Lech Kulikowski
Posts: 6238
Joined: Tue Mar 20, 2018 5:34 am

Re: Showing report in fullscreen mode

Post by Lech Kulikowski »

Hello,

Sorry, maybe we did not exactly understand your question. Could you explain your issue in more detail?

Thank you.
Irena
Posts: 9
Joined: Wed Feb 19, 2020 7:21 am

Re: Showing report in fullscreen mode

Post by Irena »

The WPF application I am developing is in fullscreen mode (WindowStyle="None"). I would like the report to be shown in the similar way. The problem is that at the place where Windows taskbar is used to be positioned I see my application, behind shown report.

Link to the project: https://drive.google.com/open?id=1ClMMg ... ao9zmyufoU
Screenshot of application: https://drive.google.com/open?id=11De1m ... 03S489RPWm
Screenshot of shown report: https://drive.google.com/open?id=1wL2GZ ... HBp5hRSQKv
Lech Kulikowski
Posts: 6238
Joined: Tue Mar 20, 2018 5:34 am

Re: Showing report in fullscreen mode

Post by Lech Kulikowski »

Hello,

Please try to use the following code:
report.Render(false);
var window = new StiWpfFullScreenViewerWindow(report);
window.ShowDialog();

Thank you.
Irena
Posts: 9
Joined: Wed Feb 19, 2020 7:21 am

Re: Showing report in fullscreen mode

Post by Irena »

Hello,

That was not what I actually expected, but it's fine. Thank you very much for your support!
Irena
Posts: 9
Joined: Wed Feb 19, 2020 7:21 am

Re: Showing report in fullscreen mode

Post by Irena »

I found what I was actually looking for.

Here is the code I used:

Code: Select all

StiWpfViewerWindow window = new StiWpfViewerWindow(lReport)
{
     WindowStyle = WindowStyle.ToolWindow
};
Thank you.
Lech Kulikowski
Posts: 6238
Joined: Tue Mar 20, 2018 5:34 am

Re: Showing report in fullscreen mode

Post by Lech Kulikowski »

Hello

Thank you for the information.
Post Reply