WINDOW Metrostyle pero no al 100%

Post Reply
User avatar
mgsoft
Posts: 398
Joined: Mon Aug 17, 2009 12:18 pm
Location: España

WINDOW Metrostyle pero no al 100%

Post 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.
Saludos,

Eduardo
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: WINDOW Metrostyle pero no al 100%

Post 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
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply