Page 1 of 1

Showing report in fullscreen mode

Posted: Tue Mar 03, 2020 9:46 am
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.

Re: Showing report in fullscreen mode

Posted: Thu Mar 05, 2020 10:56 pm
by Lech Kulikowski
Hello,

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

Thank you.

Re: Showing report in fullscreen mode

Posted: Fri Mar 06, 2020 8:46 am
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

Re: Showing report in fullscreen mode

Posted: Fri Mar 13, 2020 8:13 pm
by Lech Kulikowski
Hello,

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

Thank you.

Re: Showing report in fullscreen mode

Posted: Tue Mar 24, 2020 1:10 pm
by Irena
Hello,

That was not what I actually expected, but it's fine. Thank you very much for your support!

Re: Showing report in fullscreen mode

Posted: Wed Mar 25, 2020 7:21 am
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.

Re: Showing report in fullscreen mode

Posted: Wed Mar 25, 2020 10:25 am
by Lech Kulikowski
Hello

Thank you for the information.