WPF ListView/GridView绑定 [英] WPF ListView/GridView Binding

查看:66
本文介绍了WPF ListView/GridView绑定的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试制作一个简单的VS 2017扩展程序,该扩展程序将一个对象并显示它.我有数据返回并在文本框中显示json,所以我知道数据正确返回了.但是由于某种原因,gv只是两次显示单词"id",因为它们是数据集中的两条记录.我已经尝试了很多事情,而这些事情都是我所无法企及的.加上文档似乎无处不在.

I am attempting to make a simple VS 2017 Extension that is taking a object and displaying it. I have the data coming back and displaying the json in a text box, so I know the data is coming back correctly. But for some reason the gv is just showing the word "id" twice, as their are two records in the dataset. I have tried so many things I'm loosing track. Plus the documentation seems to be all over the place.

我相信这里至少可能有2个问题...

I believe there could be at least 2 issues here...

1)XAML的绑定"

1) XAML the "Bindings"

2)绑定数据或将数据添加到LV?

2) Binding or adding the data to the LV?

任何对此的帮助将不胜感激!

Any help with this would be greatly appreciated!

XAML

<UserControl x:Class="DoWork.AllWorkVSControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             Background="{DynamicResource VsBrush.Window}"
             Foreground="{DynamicResource VsBrush.WindowText}"
             mc:Ignorable="d"
             d:DesignHeight="300" d:DesignWidth="300"
             Name="MyToolWindow">
    <Grid>
        <StackPanel Orientation="Vertical">
            <TextBlock Margin="10" HorizontalAlignment="Center">AllWorkVS</TextBlock>
            <Button Content="Click me!" Click="button1_Click" Width="120" Height="80" Name="button1"/>
            <TextBox Height="200" TextWrapping="Wrap" Name="txtJson"/>
            <ListView x:Name="LvIssues">
                <ListView.View>
                    <GridView>
                        <GridView.Columns>
                            <GridViewColumn Width="Auto" Header="Id"  DisplayMemberBinding="{Binding Source='Id'}"></GridViewColumn>
                        </GridView.Columns>
                    </GridView>
                </ListView.View>
            </ListView>
        </StackPanel>
    </Grid>
</UserControl>

C#

public class People
{
    public string Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
}

public partial class AllWorkVSControl : UserControl
{

    public AllWorkVSControl()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        var t = Issues.GetPeopleById("2");
        PopulateListView();
        MessageBox.Show(t);
    }

    private void PopulateListView()
    {
        var l = GetPeople();
        txtJson.Text = JsonConvert.SerializeObject(l);

        foreach (var p in l)
        {
            LvIssues.Items.Add(p);
        }
    }
}

推荐答案

您需要设置ListView.ItemsSource.

you need to set the ListView.ItemsSource.

private void PopulateListView()
{
    var l = GetPeople();
    txtJson.Text = JsonConvert.SerializeObject(l);

    LvIssues.ItemsSource= l;
}

<ListView x:Name="LvIssues">
            <ListView.View>
                <GridView>
                    <GridView.Columns>
                        <GridViewColumn Width="Auto" Header="Id"  DisplayMemberBinding="{Binding Id}"></GridViewColumn>
                    </GridView.Columns>
                </GridView>
            </ListView.View>
        </ListView>

这篇关于WPF ListView/GridView绑定的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆