FilterEventArgs.Item プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
フィルターのテスト対象のオブジェクトを取得します。
public:
property System::Object ^ Item { System::Object ^ get(); };
public object Item { get; }
member this.Item : obj
Public ReadOnly Property Item As Object
プロパティ値
フィルターでテストする必要があるオブジェクト。 既定値は、null
です。
例
次の例は、イベントのイベント ハンドラーを設定する方法を CollectionViewSource.Filter 示しています。 この例の listingDataView
は、CollectionViewSource のインスタンスです。
listingDataView.Filter += new FilterEventHandler(ShowOnlyBargainsFilter);
AddHandler listingDataView.Filter, AddressOf ShowOnlyBargainsFilter
次の例は、フィルター イベント ハンドラーの例 ShowOnlyBargainsFilter
の実装を示しています。 このイベント ハンドラーでは、 プロパティをFilterEventArgs.Accepted使用して、 が $25.00 以上のオブジェクトCurrentPrice
を除外AuctionItem
します。
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
完全な例については、「 データ バインディングのデモ」を参照してください。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET