2

我无法获得当前行值。我能怎么做?

bindingSource1.DataSource = LData; (LData is Generic List)
public DataRow currentRow
    {
        get
        {
            int position = this.BindingContext[bindingSource1].Position;
            if (position > -1)
            {
                return ((DataRowView)bindingSource1.Current).Row;
            }
            else
            {
                return null;
            }
        }
    }

我无法获得当前行:

    MessageBox.Show(currentRow["NAME"].ToString());

出现错误:InvalidCastException,我该怎么办?谢谢。

4

1 回答 1

6

如果您设置为 a而不是 a ,则不能期望有DataRow对象。在您的情况下,将包含泛型类型的实例。bindingSource1.CurrentDataSourceList<T>DataTablebindingSource1.Current

我想您正在像这样初始化 LData:

LData = new List<T>();

该属性应如下所示:

public T currentRow
{
    get
    {
        int position = this.BindingContext[bindingSource1].Position;
        if (position > -1)
        {
            return (T)bindingSource1.Current;
        }
        else
        {
            return null;
        }
    }
}

您可以像这样读取值(假设Name是 的属性T):

MessageBox.Show(currentRow.Name);

当然没有经过测试,但这样的东西应该可以工作。使用以下行中的调试器查看Current属性的内容实际上是什么样的:

return (T)bindingSource1.Current;
于 2012-07-07T15:19:59.673 回答