UnsetFullScreen() private method

private UnsetFullScreen ( CarbonWindowInfo windowInfo ) : void
windowInfo CarbonWindowInfo
return void
Example #1
0
 internal void UnsetFullscreen(AglContext context)
 {
     context.UnsetFullScreen(window);
     Debug.Print("Telling Carbon to reset window state to " + windowState.ToString());
     SetCarbonWindowState();
     SetSize((short)windowedBounds.Width, (short)windowedBounds.Height);
 }
Example #2
0
 internal void UnsetFullscreen(AglContext context)
 {
   context.UnsetFullScreen(this.window);
   this.SetCarbonWindowState();
   this.SetSize((short) this.windowedBounds.Width, (short) this.windowedBounds.Height);
 }
        internal void UnsetFullscreen(AglContext context)
        {
            context.UnsetFullScreen(window);

            Debug.Print("Telling Carbon to reset window state to " + windowState.ToString());
            SetCarbonWindowState();

            SetSize((short)windowedBounds.Width, (short)windowedBounds.Height);
        }
Example #4
0
 internal void UnsetFullscreen(AglContext context)
 {
     context.UnsetFullScreen(this.window);
     this.SetCarbonWindowState();
     this.SetSize((short)this.windowedBounds.Width, (short)this.windowedBounds.Height);
 }