小 小刚 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-05 #2 用别的空件或者如下 butten1.Cation:='竖'+#13+'排'+#13+'控'+#13+'件'
小 小刚 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-05 #6 刚才试了一下,SpeedButton按钮可以。如下: SpeedButton1.Caption:='竖'+#13+'排'+#13+'控'+#13+'件';
小 小刚 Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-05 #7 BitBtn按钮也可以,如下: BitBtn1.Caption :='竖'+#13+'排'+#13+'控'+#13+'件';
W wjiachun Unregistered / Unconfirmed GUEST, unregistred user! 2000-08-06 #9 SetWindowLong(Button1.handle, GWL_STYLE, GetWindowlong(Button1.Handle, GWL_STYLE) or BS_MULTILINE); 必要时加上 Button1.Invalidate; 注意: Button 不会自动调整,最好把 height 设大点,把width小一点。 忘了是谁提供的了,很有效的
SetWindowLong(Button1.handle, GWL_STYLE, GetWindowlong(Button1.Handle, GWL_STYLE) or BS_MULTILINE); 必要时加上 Button1.Invalidate; 注意: Button 不会自动调整,最好把 height 设大点,把width小一点。 忘了是谁提供的了,很有效的