在WinForm应用程序中绑定一个列表到Repeater

本文关键字:一个 列表 Repeater 应用程序 WinForm 绑定 | 更新日期: 2023-09-27 18:03:47

我最近开始问这个问题。建议的方法是使用DataRepeater

我看过很多关于如何绑定中继器的例子,但它们都是针对ASP的,而不是Windows窗体应用程序。

我已将Label, PictureBoxButton组件添加到模板中,但我未能成功将IList<SomeObject>绑定到DataRepeater

我想用列表中的信息填充这些组件。

如何在WinForm应用程序绑定IList<SomeObject>DatarRepeater ?

在WinForm应用程序中绑定一个列表到Repeater

终于修好了!为了将来参考,这是我使用的:

首先调用此方法来初始化手动绑定,使用BindingSource:

private BindingSource bindingSource ;
private void InitUserListArea()
{
    _bindingSource = new BindingSource();
    _bindingSource.DataSource = tempUsers;
    _labelUserListRoleValue.DataBindings.Add("Text", _bindingSource, "Role");
    _labelUserListNameValue.DataBindings.Add("Text", _bindingSource, "Name");
    _labelUserListLastAccessValue.DataBindings.Add("Text", _bindingSource, "LastAccess");
    _dataRepeaterUserList.DataSource = _bindingSource;
}

然后获取数据(在我的例子中来自webservice)并用数据填充列表。在填充列表之后,或者发生任何更改时:

private void RefreshDataRepeater()
{
    if (_dataRepeaterUserList.InvokeRequired)
    {
        _dataRepeaterUserList.Invoke((Action)(() => { RefreshDataRepeater(); }));
        return;
    }
    _bindingSource.DataSource = null;
    _bindingSource.DataSource = tempUsers;
    _dataRepeaterUserList.DataSource = null;
    _dataRepeaterUserList.DataSource = _bindingSource;
    _dataRepeaterUserList.Refresh();
}