gpt4 book ai didi

WPF ItemsSource 绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 18:51:32 26 4
gpt4 key购买 nike

我的 WPF 应用程序中有一个 Datagrid 控件,我正在尝试将该控件绑定(bind)到我的主窗口类中的 ObservableCollection 属性。我试图绑定(bind)的属性定义为:

private ObservableCollection<RequestResult> m_SentRequests = new ObservableCollection<RequestResult>();
public ObservableCollection<RequestResult> SentRequests { get { return m_SentRequests; } }

我的数据网格位于将数据上下文设置为主窗口的组中:
<GroupBox Header="Results" Height="275" HorizontalAlignment="Stretch" Margin="0,305,0,0" Name="grpResults" VerticalAlignment="Top" Width="712" DataContext="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType=my:MainWindow, AncestorLevel=1}}">
<Grid>
<DataGrid AutoGenerateColumns="False" Height="246" HorizontalAlignment="Stretch" Margin="6,6,6,0" Name="dgResults" VerticalAlignment="Top" ItemsSource="{Binding Path=SentRequests}" DataContext="{Binding}" IsSynchronizedWithCurrentItem="True" />
</Grid>
</GroupBox>

我遇到的问题是,在属性窗口中,选择 SentRequests 作为我的 ItemsSource 后,我仍然无法选择“编辑属性绑定(bind)列”选项。我得到一个“您必须先设置 ItemsSource,然后才能执行此操作”对话框。选择“生成列”和“删除列”时出现相同的错误。就好像我没有在我的对话框的 ItemsSource 属性中设置任何内容。

我可以将 AutoGenerateColumns 设置为 true,但我看到我的数据被绑定(bind)(但是,不是我想要显示的列)。

我对 WPF 很陌生,我只是把它写成一个用于测试 Windows 服务的快速测试应用程序。

有人知道我在这里做错了什么吗?

最佳答案

我认为您不需要在 itemSource 中使用 Path 参数。您应该能够将绑定(bind)设置为 ItemsSource={Binding SentRequests}

您还可以在代码中绑定(bind)到网格项目源,例如,如果我创建一个虚拟集合:

    public class People
{

public string FirstName { get; set; }
public string LastName { get; set; }
public string Age { get; set; }
public string address { get; set; }
public string zip { get; set; }
}

然后填充它
this.AllPeople = new ObservableCollection<People>();


private void FillData()
{
People p1 = new People();
p1.FirstName = "John";
p1.LastName = "Doe";
p1.Age = "24";
p1.address = "123 Main Street";
p1.zip = "11111";

People p2 = new People();
p2.FirstName = "Jane";
p2.LastName = "Smith";
p2.Age = "36";
p2.address = "456 Water Street";
p2.zip = "22222";

People p3 = new People();
p3.FirstName = "Larry";
p3.LastName = "Williams";
p3.Age = "24";
p3.address = "785 Water Street";
p3.zip = "33333";

this.AllPeople.Add(p1);
this.AllPeople.Add(p2);
this.AllPeople.Add(p3);
}

然后我可以将主页构造函数或方法中的项目源设置为:

this.gridviewname.ItemsSource = "所有人";

关于WPF ItemsSource 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5463978/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com