delphi中怎样让,窗体运行时,不可见

2024年11月18日 06:35
有1个网友回答
网友(1):

在窗口的OnPaint属性中加入一行代码
Hide;

不过如果你还希望在特定的情况下显示窗口,最好写成
if (some condition) then
Hide;