中国开发网: 论坛: 程序员情感CBD: 贴子 378835
茶壶: 帮助中的吧?呵呵。
已经很少开帮助了。API就看MSDN。其他的嘛,

procedure TApplication.SetShowHint(Value: Boolean);
begin
if FShowHint <> Value then
begin
FShowHint := Value;
if FShowHint then
begin
FHintWindow := HintWindowClass.Create(Self);
FHintWindow.Color := FHintColor;
end else
begin
FHintWindow.Free;
FHintWindow := nil;
end;
end;
end;

相关信息:


欢迎光临本社区,您还没有登录,不能发贴子。请在 这里登录