WPF中如何继承ListViewItem?

发布于 2024-09-26 19:38:22 字数 85 浏览 3 评论 0原文

我需要创建表,该表的所有 ListViewItem 将被构建保留 1. 图片 2. 文字 3. 按钮

我该怎么做?

I need to create table that all ListViewItem of this table will be build hold
1. Image
2. Text
3. Button

How can i do it ?

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

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

发布评论

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

评论(1

心作怪 2024-10-03 19:38:22

在 WPF 中,您不必继承 ListViewItem 来添加属性,您可以使用属性创建类并将其绑定到 ListView 或 ListBox 的 ItemSource 并创建 ItemTemplate 以根据需要显示项目。

public class MyItem
{
  public string MyImagePath{get; set;}
  public string MyText{get; set;}
}

<ListView x:Name="GroupsView" ItemsSource="{Binding MyItemsList}" >
    <ListView.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <Image  Source="{Binding Path=MyImagePath}" />
                <TextBlock Margin="2,0,2,0" Text="{Binding MyText}"/>
                <Button .../>
            </StackPanel>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

以下是有关该问题的一些资源

1.http:// /huydinhpham.blogspot.com/2008/11/using-listvew-to-display-complex-data.html

2.http://www.codewrecks.com/blog/index.php/2008/ 11/08/wpf-and-wrapping-text-inside-elements-of-a-listview/

In WPF you don't have to inherit ListViewItem to add your properties, you can create your class with your properties and bind it to ListView's or ListBox's ItemSource and create ItemTemplate to show item as you like.

public class MyItem
{
  public string MyImagePath{get; set;}
  public string MyText{get; set;}
}

<ListView x:Name="GroupsView" ItemsSource="{Binding MyItemsList}" >
    <ListView.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <Image  Source="{Binding Path=MyImagePath}" />
                <TextBlock Margin="2,0,2,0" Text="{Binding MyText}"/>
                <Button .../>
            </StackPanel>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

Here are some resources about that

1.http://huydinhpham.blogspot.com/2008/11/using-listvew-to-display-complex-data.html

2.http://www.codewrecks.com/blog/index.php/2008/11/08/wpf-and-wrapping-text-inside-elements-of-a-listview/

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