Tooltip


Tooltip

A tooltip is message that is momentarily displayed when the user passes the mouse over a GUI element.
Un tooltip es un mensaje que se muestra momentáneamente cuando el usuario pasa el ratón por encima de un elemento GUI.

Problem 1
Cree a Wintempla Dialog application called Duplicate as shown. In Wintempla, click on Show All Controls in ToolboxShow All Controls in Toolbox to insert a Tooltip control; the position of the control is not important.
Cree una Aplicación de Diálogo de Wintempla llamada Duplicate como se muestra. En Wintempla, haga clic enShow All Controls in ToolboxShow All Controls in Toolbox para insertar un control de Tooltip; la posición del control no es importante.

TooltipDuplicate

DuplicateRun

Duplicate.cpp
...

void Duplicate::Window_Open(Win::Event& e)
{
     //________________________________________________________ tipMessage
     tipMessage.AddTool(tbxInput, L"Please input a number");
     tipMessage.SetTitleWithStandardIcon(L"Duplicate", TTI_INFO);
}

void Duplicate::btDuplicate_Click(Win::Event& e)
{
     const double input = tbxInput.DoubleValue;
     tbxInput.DoubleValue = 2.0*input;
}


© Copyright 2000-2021 Wintempla selo. All Rights Reserved. Jul 22 2021. Home