如何在使用 AddChild 构建的 TextInput 上设置焦点属性?

发布于 2024-07-20 01:14:33 字数 1118 浏览 4 评论 0原文

我有以下 MXML:

<mx:State name="myState">
    <mx:AddChild relativeTo="{myhbox}" position="after">
        <mx:Box verticalAlign="middle" horizontalAlign="center" width="100%" height="100%">
            <mx:Form id="myForm" width="479" verticalScrollPolicy="off" horizontalScrollPolicy="off">
                <mx:FormItem label="My Label:" fontWeight="bold" id="myLabel" direction="vertical">
                    <mx:TextInput id="myTextInput" width="282" />
                        <mx:HBox>
                            <mx:Button label="Go" click="go();" id="goButton" />
                        </mx:HBox>
                </mx:FormItem>
            </mx:Form>
        </mx:Box>
    </mx:AddChild>
</mx:State>

如何使用将焦点设置在 TextInput 字段上? 我已经尝试了以下操作,但它只会导致该字段突出显示 - 光标不会出现在 TextInput 中:

<mx:SetProperty target="{stage}" name="focus" value="{myTextInput}"/>

长话短说,我希望光标出现在该字段中。

更新:我明白了。 解决办法见评论。

I have the following MXML:

<mx:State name="myState">
    <mx:AddChild relativeTo="{myhbox}" position="after">
        <mx:Box verticalAlign="middle" horizontalAlign="center" width="100%" height="100%">
            <mx:Form id="myForm" width="479" verticalScrollPolicy="off" horizontalScrollPolicy="off">
                <mx:FormItem label="My Label:" fontWeight="bold" id="myLabel" direction="vertical">
                    <mx:TextInput id="myTextInput" width="282" />
                        <mx:HBox>
                            <mx:Button label="Go" click="go();" id="goButton" />
                        </mx:HBox>
                </mx:FormItem>
            </mx:Form>
        </mx:Box>
    </mx:AddChild>
</mx:State>

How do I set focus on the TextInput field using <mx:SetProperty/>? I've tried the following, but it only results in the field being highlighted -- the cursor does not appear in the TextInput:

<mx:SetProperty target="{stage}" name="focus" value="{myTextInput}"/>

Long story short, I want the cursor to appear in the field.

UPDATE: I figured it out. See comments for solution.

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

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

发布评论

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

评论(2

沫离伤花 2024-07-27 01:14:33

我尝试避免使用 AddChild 状态标记。 通常最好将所有这些都放在一个组件中,并在需要显示时使用 SetProperty 设置visible 和includeInLayout。

您始终可以覆盖自定义组件中的可见内容以将焦点设置到该字段。 或者创建一个自定义设置器来完成同样的事情

public function set show(value:Boolean):void
{
  visible = true;
  includeInLayout = true;
  if (value)
  myFunctionThatSetsTheFocus();
}

I try to avoid using the AddChild state tag. It's usually better to put all that in a component, and use SetProperty to set visible and includeInLayout when you want it to display.

You can always override visible in your custom component to set the focus to the field. Or create a custom setter than does the same thing

public function set show(value:Boolean):void
{
  visible = true;
  includeInLayout = true;
  if (value)
  myFunctionThatSetsTheFocus();
}
衣神在巴黎 2024-07-27 01:14:33

将“creationComplete”添加到 TextInput 并让它调用在 TextInput 上设置焦点的方法

Add a "creationComplete" to the TextInput and had it call a method that setFocus on the TextInput

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