为什么为 TextField 设置 setLabelForComponent 时不显示 Label?

发布于 2024-12-14 10:10:39 字数 587 浏览 0 评论 0原文

Form 中有 LabelTextFieldContainer。我设置:

...
private Container c = new Container(new BoxLayout(BoxLayout.Y_AXIS));
...
impay30 = new Label("Impayé 30j");
impay30.setUIID("FicheLibelle");
impay30.setPreferredW(LabellargeW);
impay30txt = new TextField();
impay30txt.setMaxSize(50);
impay30txt.addDataChangeListener(this);
VirtualKeyboard.bindVirtualKeyboard(impay30txt, vkNombre);
impay30txt.setLabelForComponent(impay30);
c.addComponent(impay30txt);

但在运行时仅显示 TextField 但不显示 Label !那么如何让Label出现呢?

There are Label, TextField and a Container in a Form. I set :

...
private Container c = new Container(new BoxLayout(BoxLayout.Y_AXIS));
...
impay30 = new Label("Impayé 30j");
impay30.setUIID("FicheLibelle");
impay30.setPreferredW(LabellargeW);
impay30txt = new TextField();
impay30txt.setMaxSize(50);
impay30txt.addDataChangeListener(this);
VirtualKeyboard.bindVirtualKeyboard(impay30txt, vkNombre);
impay30txt.setLabelForComponent(impay30);
c.addComponent(impay30txt);

But in runtime the TextField are only displayed but the Label are not displayed ! So how to make the Label appear ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

几度春秋 2024-12-21 10:10:39

您必须将 impay30 添加到 Container(c) 中。然后只有它显示在屏幕上。 impay30 标签在使用 setLabelForComponent 时与 impay30txt 组件关联,用于启动 Label 的代码当Component获得焦点时。

You have to add impay30 into Container(c). Then only its showing on the screen. impay30 label is associate with impay30txt component when use setLabelForComponent and it will be used for start the ticker of the Label when the Component receives the focus.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文