Pixel Full Screen Mode

Hello,

i’m testing with my new Raspbian Pixel if there is a way to set an application to fullscreen mode. The File-Browser and Picture Viewer seem to work when pressing F11.

How can i setup this mode in my Application?

Thanks

Björn

Hi Björn,

In the Open event of a window I use the following:

#if TargetMacOS Then
	//using to suppress full-screen during debugging on Mac
#Else
	Self.FullScreen = true
#endif

Thanks William,

this works for me too!

Björn