En este tema iré publicando código en qt de esas cosas que me han costado un poco de encontrar, para que así sea mas facil.
Este ejemplo seria para cambiar el color al botón y la fuente:
Function Boton()
Local oPrincipal
Local aBtn[1]
DEFINE DIALOG oPrincipal TITLE "Radio JJG" ;
SIZE 325, 540
aBtn[1] := QPushButton( oPrincipal )
aBtn[1] :SetText( "Ventas" )
aBtn[1] :Move ( 10, 10 )
aBtn[1] :Resize ( 310, 70 )
aBtn[1] :SetStyleSheet( " background: #F4F4F0; font-size: 18px; font-weight: bold; color: #ff0000;" ) //Color del Botón, Tamaño de la Fuente, Fuente en Negrita, Color de la Fuente
aBtn[1] :Connect( "clicked()", { || MsgInfo("Pruebas") } )
ACTIVATE DIALOG oPrincipal CENTERED
Return( NIL )
Código Qt
Jump to
- English Forums
- ↳ FiveWin for CA-Clipper
- ↳ FiveWin for Harbour/xHarbour
- ↳ FiveTouch
- ↳ EasyReport, EasyDialog and EasyPreview
- ↳ FiveMac / FivePhone (iPhone, iPad)
- ↳ FiveLinux / FiveDroid (Android)
- ↳ FiveWin for Pocket PC
- ↳ mod_harbour
- Foros en Español
- ↳ FiveWin para CA-Clipper
- ↳ FiveWin para Harbour/xHarbour
- ↳ FiveTouch
- ↳ EasyReport, EasyDialog y EasyPreview
- ↳ FiveMac / FivePhone (iPhone, iPad)
- ↳ FiveLinux / FiveDroid (Android)
- ↳ FiveWin para Pocket PC
- ↳ mod_harbour
- Forum italiani
- ↳ All products support
- Forum Portuguese
- ↳ All products support
- Forum German
- ↳ All products support
- General
- ↳ WhatsNew / Novedades
- ↳ Bugs report & fixes / Informe de errores y arreglos
- ↳ To do - WishList / Por hacer - Peticiones
- ↳ Utilities / Utilidades
- ↳ Off Topic / Otros temas
- Artificial Intelligence
- ↳ TensorFlow and Python examples
- ↳ TensorFlow.dll for Harbour and FWH
- ↳ latest AI news
- ↳ Building TensorFlow.dll
- ↳ AI Introduction (Harbour code and samples)