WPF ListView 显示图像

发布于 2024-08-18 12:26:17 字数 625 浏览 3 评论 0原文

我有一个简单的类,其中包含一个字符串和一个 WPF Image 控件:

public class User
{
    public string Name { get; set; }

    public System.Windows.Controls.Image Image { get; set; }
}

现在我将此类的实例列表绑定到 ListView

我现在想做的是让 ListView 显示 Image 属性。

我尝试将 DisplayMemberPath 设置为 Image,但这显示了 ImageToString 值 (System.Windows.Controls.Image)。

我怎样才能让它真正显示控件?

这是XAML代码:

<ListView Name="listView1" DisplayMemberPath="Image" />

谢谢!

I have a simple class that contains a string and an WPF Image control:

public class User
{
    public string Name { get; set; }

    public System.Windows.Controls.Image Image { get; set; }
}

Now I'm binding a list of instances of this class to a ListView.

What I would like to do now is make ListView display the Image property.

I've tried settings DisplayMemberPath to Image, but this shows the ToString value of Image instead (System.Windows.Controls.Image).

How can I make it actually show the control?

Here's the XAML code:

<ListView Name="listView1" DisplayMemberPath="Image" />

Thanks!

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

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

发布评论

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

评论(1

乞讨 2024-08-25 12:26:17

您可以创建一个使用 ContentPresenter 来显示图像的 DataTemplate

<ListBox>
    <ListBox.ItemTemplate>
        <DataTemplate>
            <ContentPresenter Content="{Binding Image}"/>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

You could create a DataTemplate that uses a ContentPresenter to display the image:

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