UnsetFullScreen() private method

private UnsetFullScreen ( CarbonWindowInfo windowInfo ) : void
windowInfo CarbonWindowInfo
return void
示例#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);
 }
示例#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);
        }
示例#4
0
 internal void UnsetFullscreen(AglContext context)
 {
     context.UnsetFullScreen(this.window);
     this.SetCarbonWindowState();
     this.SetSize((short)this.windowedBounds.Width, (short)this.windowedBounds.Height);
 }