可以在状态更改时更改组件 - Flex
我有一大堆数据显示在不同的标签中,现在我正在添加编辑状态。我希望所有标签都“转换”为 TextInputs。我只是想知道是否可以使用状态来改变
成这样的东西
I've got a whole bunch of data being displayed in different Labels, now I'm adding an edit state. I'd like all the labels to "transform" into TextInputs. I was just wondering if it possible to uses states to change
into something like this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在状态更改时在可见和不可见组件之间切换可能会更容易。
因此标签 lblFirstName 与文本 txtFirstName 处于相同的 x/y 位置。当 lblFirstName 可见时 txtFirstName 不可见。
设置起来应该不会太难。
Would probably be easier to toggle between visible and invisible components on state change.
So the label lblFirstName is in the same x/y position as text txtFirstName. When lblFirstName is visible txtFirstName is not.
Shouldn't be too hard to set up.