FilterEventHandler 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示處理 Filter 事件的方法。
public delegate void FilterEventHandler(System::Object ^ sender, FilterEventArgs ^ e);
public delegate void FilterEventHandler(object sender, FilterEventArgs e);
type FilterEventHandler = delegate of obj * FilterEventArgs -> unit
Public Delegate Sub FilterEventHandler(sender As Object, e As FilterEventArgs)
參數
- sender
- Object
事件的來源。
事件資料。
範例
下列範例示範如何設定事件的事件處理常式 CollectionViewSource.Filter 。 在此範例中,listingDataView
是 CollectionViewSource 的執行個體。
listingDataView.Filter += new FilterEventHandler(ShowOnlyBargainsFilter);
AddHandler listingDataView.Filter, AddressOf ShowOnlyBargainsFilter
下列範例顯示範例 ShowOnlyBargainsFilter
篩選事件處理常式的實作。 這個事件處理常式會 FilterEventArgs.Accepted 使用 屬性來篩選 AuctionItem
出具有 CurrentPrice
$25.00 或更新版本的 物件。
private void ShowOnlyBargainsFilter(object sender, FilterEventArgs e)
{
AuctionItem product = e.Item as AuctionItem;
if (product != null)
{
// Filter out products with price 25 or above
if (product.CurrentPrice < 25)
{
e.Accepted = true;
}
else
{
e.Accepted = false;
}
}
}
Private Sub ShowOnlyBargainsFilter(ByVal sender As Object, ByVal e As FilterEventArgs)
Dim product As AuctionItem = CType(e.Item, AuctionItem)
If Not (product Is Nothing) Then
'Filter out products with price 25 or above
If product.CurrentPrice < 25 Then
e.Accepted = True
Else
e.Accepted = False
End If
End If
End Sub
如需完整範例,請參閱 資料系結示範。
擴充方法
GetMethodInfo(Delegate) |
取得表示特定委派所代表之方法的物件。 |