I want to Run my XBAP in full screen mode. Is there any way to make IE to open XBAP in fullscreen?
相关问题
- VNC control for WPF application
- WPF Binding from System.Windows.SystemParameters.P
- XAML: Applying styles to nested controls
- How can I add a horizontal line (“goal line”) for
- How to properly change a resource dictionary
I'm not sure there's any good way to do this, but you could set up a shortcut to open IE in Kiosk mode and fire up your xbap:
that would 'full screen' it.
As I am running with full trust, whenever user clicks on full screen button, I used Process.Start() method to open IE in kiosk mode.
The following code solved my issue.