我正在尝试在我的应用中使用气球类型ui创建一些提示,让用户看到有关特定情况下需要采取的某些操作的信息,但是我看了一些论坛的代码。
我发现的气球提示的一个示例位于以下网站http://www.tek-tips.com/viewthread.cfm?qid=1611641。我认为它是在C ++ Builder 2009 IDE中创建的
尝试使用C builder 2010 IDE RS编译它,但我无法得到任何气球提示。
首先,当我编译时,它停在以下行,如
GetClientRect(hWnd, &ti.rect);
然后我将其更改为GetWindowRect'因为GetClientRect
不需要将任何参数传递给此方法,虽然我更改了clint-to-window然后我终于运行了...认为它会显示提示但没有任何工具提示。
此外,我还提供了我提供链接的代码。
#pragma hdrstop
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
}
//---------------------------------------------------------------------------
typedef struct{
unsigned long cbStruct;
PWChar pszTitle;
PWChar pszText;
int ttiIcon;
} tagEDITBALLOONTIP;
tagEDITBALLOONTIP *EDITHINT;
void __fastcall TForm1::ShowBalloonTip(TWinControl *Control,int Icon,char *Title,char *Text,TColor BackCL,TColor TextCL)
{
HWND hWndTip;
TOOLINFO ti;
HWND hWnd;
hWnd = Control->Handle;
hWndTip = CreateWindow(TOOLTIPS_CLASS, NULL, WS_POPUP | TTS_NOPREFIX | TTS_BALLOON | TTS_ALWAYSTIP, 0, 0, 0, 0, hWnd, 0, HInstance, NULL);
if( hWndTip )
{
SetWindowPos(hWndTip, HWND_TOPMOST, 0, 0, 0, 0,
SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOSIZE);
ti.cbSize = sizeof(ti);
ti.uFlags = TTF_CENTERTIP | TTF_TRANSPARENT | TTF_SUBCLASS;
ti.hwnd = hWnd;
ti.lpszText = Text;
GetClientRect(hWnd, &ti.rect); // the only problem is here
SendMessage(hWndTip, TTM_SETTIPBKCOLOR, BackCL, 0);
SendMessage(hWndTip, TTM_SETTIPTEXTCOLOR, TextCL, 0);
SendMessage(hWndTip, TTM_ADDTOOL, 1, Integer(&ti));
SendMessage(hWndTip, TTM_SETTITLE, Icon % 4, Integer(Title));
}
}
void __fastcall TForm1::Button1Click(TObject *Sender)
{
ShowBalloonTip(Button1, 1, "ik0","Example on how to create Balloon Tips in C++ Builder", ColorBox1->Selected,ColorBox2->Selected );
}`
然后我问如何让它在builder 2010 IDE中工作?
我想知道为什么它在2009 IDE中使用了像GetClientRect()
这样提供2个参数的Windows API函数,当我在Windows 7中的C builder 2010 IDE中编译它时,它说没有预期的参数......
答案 0 :(得分:3)
您正试图从GetClientRect()
方法中调用Win32 API TForm
函数。由于TForm
从GetClientRect()
继承了单独的TControl
方法,因此您必须告诉编译器要调用哪个方法。如果要调用Win32 API函数而不是TControl::GetClientRect()
方法,请指定全局命名空间,例如:
::GetClientRect(hWnd, &ti.rect);
另一方面,由于HWND来自TWinControl
,您可以(并且应该)使用控件的ClientRect
属性:
ti.rect = Control->ClientRect;