AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
  • Example 1: Send a control to the back
  • Example 2: Move the layer of a control in relation to another one
Example 1: Send a control to the back
WINDEVWindowsCódigo de Usuario (UMC) The following code sends the button to the back.
// Sends a control to the back
BTN_BUTTON1.ZOrder = 1
Example 2: Move the layer of a control in relation to another one
WINDEVWindowsCódigo de Usuario (UMC) An image and a button overlap. To display the image behind or in front of the button, simply use the ZOrder property.
// Displays the button in front of the image
BTN_BUTTON1.ZOrder = IMG_IMAGE1.ZOrder + 1
// Displays the button behind the image
BTN_BUTTON1.ZOrder = IMG_IMAGE1.ZOrder
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 08/03/2023

Señalar un error o enviar una sugerencia | Ayuda local