如何访问正在呈现的 ListBox 中的项目而不是其源数据?

编程入门 行业动态 更新时间:2024-10-27 15:17:09
本文介绍了如何访问正在呈现的 ListBox 中的项目而不是其源数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时送ChatGPT账号..

我的问题的延续

我尝试使用链接答案中提供的解决方案,但是当我给它提供 ListBox 绑定到的图像时,它给了我错误的位置,因为项目模板正在加载源 URL 而不是实际图像,而且数据似乎是空的.

I tried using the solution provided in the linked answer, however when I give it the image which the ListBox is binding to, it gives me the wrong position, because the Item Template is loading in a source URL rather than the actual image, and it seems the data is null.

我的项目模板如下所示:

My Item Template looks like this:

<ListBox ItemsSource="{Binding Items}"
                     HorizontalContentAlignment="Left"
                     VerticalContentAlignment="Center"  
                     ScrollViewer.VerticalScrollBarVisibility="Disabled"
                     ScrollViewer.HorizontalScrollBarVisibility="Visible" 

                     Height="64" Name="listBoxSource" 
                     VerticalAlignment="Bottom" 
                     SelectionChanged="listBoxSource_SelectionChanged" Canvas.Left="32" Canvas.Top="365" Width="596"
             >

                <ListBox.ItemsPanel>
                    <ItemsPanelTemplate>
                        <StackPanel Orientation="Horizontal"/>
                    </ItemsPanelTemplate>
                </ListBox.ItemsPanel>
                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                        <Image x:Name="ListImage" Source="{Binding thumbnailURL}" Height="64" Width="64"/>
                        </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>

            </ListBox>

如何访问当前所选项目的ListImage"?

How do I get access to "ListImage" for the currently selected Item?

推荐答案

每个 ItemsControl 都有一个 ItemsContainerGenerator,它(出人意料地)负责为列表中的每个项目生成一个控件.它提供了一些有用的方法来查找给定项目的容器,反之亦然.你可以这样使用它:

Every ItemsControl has an ItemsContainerGenerator, which (surprisingly enough) is responsible for generating a control for each item in the list. It provides a few useful methods for finding the container of a given item, and vice versa. You can use it like this:

private void listBoxSource_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
    var listBox = (ListBox) sender;
    var containerGenerator = listBox.ItemContainerGenerator;
    var container = (UIElement)containerGenerator.ContainerFromItem(listBox.SelectedItem);
}

然后您可以使用变量 container 和其他帖子中的解决方案来查找坐标,

You can then use the variable container with the solution from your other post to find the coordinates,

Point position = container.GetRelativePosition(Application.Current.RootVisual);

顺便提一下,在您的 DataTemplate 中,您不需要 StackPanel,因为 ListBox 提供了它的 ItemsPanelTemplate.

And on a side note, in your DataTemplate you don't need the StackPanel, since the ListBox is providing that with its ItemsPanelTemplate.

<DataTemplate>
    <Image x:Name="ListImage" Source="{Binding thumbnailURL}" Height="64" Width="64"/>
</DataTemplate>

这篇关于如何访问正在呈现的 ListBox 中的项目而不是其源数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

更多推荐

[db:关键词]

本文发布于:2023-04-25 14:39:58,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1119397.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:而不是   项目   数据   ListBox

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!