컨트롤에 Tooltip 추가
3425 단어 tooltip
/*************************************************
Function: CreateToolTip
Description: Tooltip
Input: int toolID ID
HWND hDlg
TCHAR* pText
Output: NULL
Return: NULL
*************************************************/
BOOL CXXX::CreateToolTip(int toolID, HWND hDlg, TCHAR* pText)
{
// toolID: the resource ID of the control.
// hDlg: the handle of the dialog box.
// pText: the text that appears in the tooltip.
// g_hInst: the global instance handle.
if (!toolID || !hDlg || !pText)
{
return FALSE;
}
// Get the window of the tool.
HWND hwndTool = ::GetDlgItem(hDlg, toolID);
HINSTANCE g_hInst = GetModuleHandle(NULL);
// Create the tooltip.
#ifndef TTS_BALLOON
#define TTS_BALLOON 0x40
#endif
HWND hwndTip = CreateWindowEx(NULL, TOOLTIPS_CLASS, NULL,
//WS_POPUP |TTS_ALWAYSTIP | TTS_BALLOON,//
WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,//
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
hDlg, NULL,
g_hInst, NULL);
if (!hwndTool || !hwndTip)
{
return FALSE;
}
// Associate the tooltip with the tool.
TOOLINFO toolInfo = { 0 };
toolInfo.cbSize = sizeof(toolInfo);
toolInfo.hwnd = hDlg;
toolInfo.uFlags = TTF_IDISHWND | TTF_SUBCLASS;
toolInfo.uId = (UINT_PTR)hwndTool;
toolInfo.lpszText = pText;
::SendMessage(hwndTip, TTM_ADDTOOL, 0, (LPARAM)&toolInfo);
return TRUE;
}
/*************************************************
Function: CreateToolTip
Description: Tooltip
Input: int toolID ID
HWND hDlg
TCHAR* pText
Output: NULL
Return: NULL
*************************************************/
BOOL CXXX::CreateToolTip(HWND hDlg, TCHAR* pText)
{
// toolID: the resource ID of the control.
// hDlg: the handle of the dialog box.
// pText: the text that appears in the tooltip.
// g_hInst: the global instance handle.
if (!hDlg || !pText)
{
return FALSE;
}
// Get the window of the tool.
//HWND hwndTool = ::GetDlgItem(hDlg, toolID);
HWND hwndTool = this->GetSafeHwnd();
HINSTANCE g_hInst = GetModuleHandle(NULL);
// Create the tooltip.
#ifndef TTS_BALLOON
#define TTS_BALLOON 0x40
#endif
HWND hwndTip = CreateWindowEx(NULL, TOOLTIPS_CLASS, NULL,
//WS_POPUP |TTS_ALWAYSTIP | TTS_BALLOON,//
WS_POPUP | TTS_NOPREFIX | TTS_ALWAYSTIP,//
CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT,
hDlg, NULL,
g_hInst, NULL);
if (!hwndTool || !hwndTip)
{
return FALSE;
}
// Associate the tooltip with the tool.
TOOLINFO toolInfo = { 0 };
toolInfo.cbSize = sizeof(toolInfo);
toolInfo.hwnd = hDlg;
toolInfo.uFlags = TTF_IDISHWND | TTF_SUBCLASS;
toolInfo.uId = (UINT_PTR)hwndTool;
toolInfo.lpszText = pText;
::SendMessage(hwndTip, TTM_ADDTOOL, 0, (LPARAM)&toolInfo);
return TRUE;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
간단♪jQuery UI로 tooltip로 구현!직장에서, 툴팁의 구현이 있었으므로, 그 사용을 기입합니다. 툴팁은 마우스 오버했을 때에 표시되는 프레임내의 보충 설명의 녀석입니다. HTML ... 좋아하는 페이지 jQuery ... 1 파일 jQuery UI ....
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.