Jump to: navigation, search

Changes


HowTo:Implement Custom Filtering

446 bytes added, 13:04, 20 April 2023
The Filter Guid Editing is based on three different xaml parts:
* Input field
* EvalExpression
* ListCollectionView <br>
<br>
With this Filter, we are able to filter in a Guid Editor dynamically without any evaluate button or something you input a value with that you want to filter with and it will directly output you any item that contains the filter input.
 
== Input field ==
The input field is just a basic Textbox we are gonna using for inputting the filter criteria value. <br>
The best solution would be to place this eval expression into the <Grid.Resources>.
== [[XAML_Changes_in_UBIK_WinX_3.5#Filtering_by_expressions|ListCollectionView]] ==
To really get used to this EvalExpression we also need to configure a [[XAML_Changes_in_UBIK_WinX_3.5#Filtering_by_expressions|ListCollectionView]], that would look like this:
<source lang = "xml">
89
edits