DataGridViewRowsRemovedEventHandler 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
代表將處理 RowsRemoved 之 DataGridView 事件的方法。
public delegate void DataGridViewRowsRemovedEventHandler(System::Object ^ sender, DataGridViewRowsRemovedEventArgs ^ e);
public delegate void DataGridViewRowsRemovedEventHandler(object sender, DataGridViewRowsRemovedEventArgs e);
public delegate void DataGridViewRowsRemovedEventHandler(object? sender, DataGridViewRowsRemovedEventArgs e);
type DataGridViewRowsRemovedEventHandler = delegate of obj * DataGridViewRowsRemovedEventArgs -> unit
Public Delegate Sub DataGridViewRowsRemovedEventHandler(sender As Object, e As DataGridViewRowsRemovedEventArgs)
參數
- sender
- Object
事件的來源。
備註
從 DataGridView 控制項中刪除資料列時,後續資料列的索引編號會降低以補償。
如需如何處理事件的詳細資訊,請參閱 處理和引發事件。
建立 DataGridViewRowsRemovedEventHandler 委派時,必須識別處理事件的方法。 若要使事件與您的事件處理常式產生關聯,請將委派的執行個體 (Instance) 加入至事件。 除非您移除委派,否則每當事件發生時就會呼叫事件處理常式。 如需事件處理常式委派的詳細資訊,請參閱 處理和引發事件。
擴充方法
GetMethodInfo(Delegate) |
取得表示特定委派所代表之方法的物件。 |