Page 1 of 1

WINDOW Metrostyle pero no al 100%

Posted: Sat Mar 21, 2020 7:09 pm
by mgsoft
Hola a todos,

Espero ante todo que todos estéis bien en estos tiempos tan difíciles.

Quiero usar el metrostyle para tener una ventana que ocupe toda la pantalla, pero que deje ver la barra de Windows.

#define METRO_STYLE ( WS_POPUP + WS_VISIBLE + WS_MAXIMIZE ) la muestra, sin embargo, al 100%, impidiendo ver la barra de Windows.

¿Alguna idea por favor?

Muchas gracias.

Re: WINDOW Metrostyle pero no al 100%

Posted: Sat Mar 21, 2020 8:07 pm
by Antonio Linares
Eduardo,

desktop.prg

Code: Select all

#include "FiveWin.ch"

function Main()

   local oWnd

   DEFINE WINDOW oWnd STYLE nOr( WS_POPUP, WS_VISIBLE ) ;
      FROM 0, 0 TO GetDesktopArea()[ 3 ], GetDesktopArea()[ 4 ] PIXEL ;
      COLOR 0, RGB( 30, 30, 30 )

   ACTIVATE WINDOW oWnd ;
      ON CLICK oWnd:End()

return nil