如何把窗口显示在状态栏上(50分)

  • 主题发起人 主题发起人 MicroZeng
  • 开始时间 开始时间
M

MicroZeng

Unregistered / Unconfirmed
GUEST, unregistred user!
一个程序, 有两个窗口, Form1 和 Form2, Form1是主窗口.<br><br>我点击一个Button : Form2.Show;<br>同时, 我要在状态栏上也显示Form2的标题, 即Form1和Form2的标题都存在.<br><br>请问怎么办?
 
已答问题里就有。<br><br>在你的form2中加入<br>&nbsp; private<br>&nbsp; &nbsp; { Private declarations }<br>&nbsp; &nbsp;procedure CreateParams(VAR Params: TCreateParams); override;<br><br>procedure TForm2.CreateParams(VAR Params: TCreateParams);<br>begin<br>&nbsp; Inherited CreateParams(Params);<br>&nbsp; Params.WndParent := GetDesktopWindow;<br>end;<br>
 
谢谢你, 以后我应该多多看已答问题.
 
接受答案了.
 
后退
顶部