Reputation: 481
before this Component (statusBar) was used in previous Delphi version like the following : StatusBar1.Panel[0].Text := 'data' ; And in Delphi xe7 this component behaviour has been changed to I don't know , Could you please let me know how to insert data in StatusBar using Delphi XE7 ?
Thanks.
Upvotes: 2
Views: 3893
Reputation: 136391
The TStatusBar
in FMX acts like a container. So you must drop controls onto it in order to draw some text. on this case you must drop a TLabel
and then modify the Text
property.
Upvotes: 6