1

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

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

我已将Label,PictureBoxButton组件添加到模板中,但我无法成功地将我IList<SomeObject>DataRepeater.

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

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

4

1 回答 1

1

终于让它工作了!为了将来参考,这是我使用的:

首先调用此方法来初始化手动绑定,使用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;
}

然后获取数据(在我的情况下来自网络服务)并用数据填充列表。填充列表后,或发生任何更改时:

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();
}
于 2013-03-13T16:41:12.230 回答