Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Delphi7 在设计时创建状态栏(来自 TBX 包)。在运行时,我创建了一个“停靠信息行”,它是一个带有Align=alBOttom.
Align=alBOttom
问题:有时信息行出现在状态栏上方,有时在状态栏下方。
始终在状态栏上方显示面板的方法是什么?
显示面板时(即当您将其Visible属性设置为 时True)还将其Top位置设置为状态栏上方(或将状态栏的顶部设置为面板下方)
Visible
True
Top
Statusbar.Top := panel.Top + panel.Height;