DataGridViewRow.DataBoundItem 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得填入資料列的資料繫結物件。
public:
property System::Object ^ DataBoundItem { System::Object ^ get(); };
[System.ComponentModel.Browsable(false)]
public object DataBoundItem { get; }
[System.ComponentModel.Browsable(false)]
public object? DataBoundItem { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DataBoundItem : obj
Public ReadOnly Property DataBoundItem As Object
屬性值
資料繫結 Object。
- 屬性
範例
下列程式碼範例示範如何使用 DataBoundItem 屬性來存取系結至資料列的商務物件。 此程式碼範例是如何:存取系結至 DataGridView 資料列Windows Forms物件中提供之較大範例的一部分。
void invoiceButton_Click(object sender, EventArgs e)
{
foreach (DataGridViewRow row in this.dataGridView1.SelectedRows)
{
Customer cust = row.DataBoundItem as Customer;
if (cust != null)
{
cust.SendInvoice();
}
}
}
Private Sub InvoiceButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles InvoiceButton.Click
For Each row As DataGridViewRow In Me.DataGridView1.SelectedRows
Dim cust As Customer = TryCast(row.DataBoundItem, Customer)
If cust IsNot Nothing Then
cust.SendInvoice()
End If
Next
End Sub
備註
當您沒有包含物件之資料來源的直接存取權時,直接透過資料列物件存取資料系結物件會很有用。 當您想要操作系結至所選資料列的物件,或是傳遞為事件處理常式引數的資料列時,也很方便。