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

2024-11-18 06:35:53
推荐回答(1个)
回答1:

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

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