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.
WINDOW Metrostyle pero no al 100%
WINDOW Metrostyle pero no al 100%
Saludos,
Eduardo
Eduardo
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: WINDOW Metrostyle pero no al 100%
Eduardo,
desktop.prg
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