使用多设备应用程序在 Delphi xe7 的状态栏中显示数据

Show data in StatusBar in Delphi xe7 using Multi-device-Application

在此组件 (statusBar) 之前,在以前的 Delphi 版本中使用如下:StatusBar1.Panel[0].Text := 'data' ; 在 Delphi xe7 中,此组件行为已更改为我不知道, 你能告诉我如何使用 Delphi XE7 在 StatusBar 中插入数据吗?

谢谢。

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 属性.