码迷,mamicode.com
首页 > Windows程序 > 详细

API

时间:2014-09-17 01:05:11      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:style   io   os   ar   on   c   r   window   app   

//任务栏上不出现按钮
SetWindowLong(Application.Handle, GWL_STYLE, WS_EX_TOOLWINDOW);

//任务栏上不出现按钮,通过改变最小化后窗体的位置来实现
var
tPlacement: WINDOWPLACEMENT;
begin
SetWindowLong(Application.Handle, GWL_EXSTYLE, WS_EX_TOOLWINDOW);
GetWindowPlacement(Application.Handle, @tPlacement);
tPlacement.flags := WPF_SETMINPOSITION;
tPlacement.ptMinPosition.X := Screen.Width + 100;
tPlacement.ptMinPosition.Y := Screen.Height + 100;
SetWindowPlacement(Application.Handle, @tPlacement);
end;

//显示一个最大化窗体。
ShowWindow(Self.Handle, SW_SHOWMAXIMIZED);

API

标签:style   io   os   ar   on   c   r   window   app   

原文地址:http://www.cnblogs.com/spiritofcloud/p/3976189.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!