winuser.h
PUSHBUTTON: Control
PUSHBUTTON text, id, x, y, width, height [, style [, extended-style]]
The PUSHBUTTON statement creates a push-button control. The control is a round-cornered rectangle containing the given text. The text is centered in the control. The control sends a message to its parent whenever the user chooses the control.
Parámetros
- text
- Especifica el texto que es centrado en el área rectangular del control.
- style
- Especifica los estilos del control. Este valor puede ser una combinación del estilo BS_PUSHBUTTON y los siguientes estilos:
WS_TABSTOP, WS_DISABLED, y WS_GROUP.
El estilo por defecto es BS_PUSHBUTTON y WS_TABSTOP.
Para mayor información sobre los parámetros text, id, x, y, width, height, style y extended-style, ver CONTROL.
Ejemplo
Este ejemplo crea un control push-button que está etiquetado como "Encender":
DEFPUSHBUTTON "Encender", 7, 10, 10, 20, 50