CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    fullscreen application

    How can I create a fullscreen SDI application


  2. #2
    Join Date
    Apr 1999
    Posts
    383

    Re: fullscreen application

    A window is fullscreen when its client area occupies the entire screen. You need to size the window so that the non-client area is outside the screen bounds (this means the top left of the window is in negative coordinate territory).

    Always-on-top appbars should take themselves out of the topmost z-order so that they do not cover the fullscreen window.




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured