列表框从用户控件中选择了项目

发布于 2024-12-22 03:44:21 字数 301 浏览 0 评论 0原文

我有一个填充有控件的列表框,该控件填充有文本框和组合框。当我编辑文本框并在组合中选择时,我需要选择底层列表项。似乎找不到解决方案。有人吗?

    <ListBox.ItemTemplate>
        <DataTemplate>
            <Controls:ComponentEditItem Background="Transparent"/>
        </DataTemplate>
    </ListBox.ItemTemplate>

I have a listbox populate with controls , the control is populated with textboxes and comboboxes. I need to select the underlying listitem when i edit the textbox and select in the combos. Cant seem to find the solutio. Anyone?

    <ListBox.ItemTemplate>
        <DataTemplate>
            <Controls:ComponentEditItem Background="Transparent"/>
        </DataTemplate>
    </ListBox.ItemTemplate>

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

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

发布评论

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

评论(1

旧城空念 2024-12-29 03:44:21

您可以添加一个 EventTrigger,当其中一个控件获得焦点时,它会选择底层的 ListBoxItem。像这样的东西:

<ListBox.ItemTemplate>
    <DataTemplate>
        <Controls:ComponentEditItem Background="Transparent">
             <Controls:ComponentEditItem.Triggers>
                  <EventTrigger RoutedEvent="GotFocus">
                        <BeginStoryboard>
                            <Storyboard>
                                 <BooleanAnimationUsingKeyFrames Duration="00:00:00" Storyboard.Target="{Binding Path=., RelativeSource={RelativeSource FindAncestor, AncestorType=ListBoxItem}}" Storyboard.TargetProperty="IsSelected">
                                      <DiscreteBooleanKeyFrame Value="True" />
                                 </BooleanAnimationUsingKeyFrames>
                             </Storyboard>
                        </BeginStoryboard>
                   </EventTrigger>
             </Controls:ComponentEditItem.Triggers>
       </Controls:ComponentEditItem>
    </DataTemplate>
</ListBox.ItemTemplate>

You can add an EventTrigger that selects underlying ListBoxItem when one of its controls is focused. Something like this:

<ListBox.ItemTemplate>
    <DataTemplate>
        <Controls:ComponentEditItem Background="Transparent">
             <Controls:ComponentEditItem.Triggers>
                  <EventTrigger RoutedEvent="GotFocus">
                        <BeginStoryboard>
                            <Storyboard>
                                 <BooleanAnimationUsingKeyFrames Duration="00:00:00" Storyboard.Target="{Binding Path=., RelativeSource={RelativeSource FindAncestor, AncestorType=ListBoxItem}}" Storyboard.TargetProperty="IsSelected">
                                      <DiscreteBooleanKeyFrame Value="True" />
                                 </BooleanAnimationUsingKeyFrames>
                             </Storyboard>
                        </BeginStoryboard>
                   </EventTrigger>
             </Controls:ComponentEditItem.Triggers>
       </Controls:ComponentEditItem>
    </DataTemplate>
</ListBox.ItemTemplate>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文