Delphi WinAPI: SetWindowText - 设置窗口标题


本文整理自网络,侵删。

 
WinAPI: SetWindowText - 设置窗口标题
//声明:
SetWindowText(
  hWnd: HWND;     {窗口句柄}
  lpString: PChar {新标题串指针}
): BOOL;


//举例:
var
  s: string;
begin
  s := '新标题';
  SetWindowText(Handle, PAnsiChar(s));
end;

相关阅读 >>

Delphi 编写系统服务

Delphi 自动复制到指定目录的代码

Delphi 提升Delphi 启动加载速度

Delphi windows 编程[15] - 菜单消息: wm_command

Delphi 自动关闭弹出的窗口

Delphi with do和for do语句

Delphi中combobox.items.indexof用法

Delphi中setlength使用

crc32.pas 第二版

Delphi退出程序询问

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...