FilterEventArgs::Item Property

 

Gets the object that the filter should test.

Namespace:   System.Windows.Data
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
property Object^ Item {
	Object^ get();
}

Property Value

Type: System::Object^

The object that the filter should test. The default is null.

The following example shows how to set an event handler for the CollectionViewSource::Filter event. In this example, listingDataView is an instance of CollectionViewSource.

No code example is currently available or this language may not be supported.

The following example shows the implementation of the example ShowOnlyBargainsFilter filter event handler. This event handler uses the FilterEventArgs::Accepted property to filter out AuctionItem objects that have a CurrentPrice of $25.00 or greater.

No code example is currently available or this language may not be supported.

For the complete example, see Data Binding Demo.

.NET Framework
Available since 3.0
Silverlight
Available since 3.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: