Difference between revisions of "SortByPropertyCommand"
(Created page with "{{CommandInfoBox | title = Sort by Property | name = {{PAGENAMEE}} | purpose = Sort the child object list by the specified property | version = 2.6.1+ | viewmodel = ChildrenLi...") |
|||
| Line 7: | Line 7: | ||
}} | }} | ||
| − | The SortByProperty Command is used to sort the child object list | + | The SortByProperty Command is used to sort the child object list. |
| + | |||
| + | The name of the property by which the list should be sorted is specified in the command parameter. | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Example: | Example: | ||
<source lang = "xml"> | <source lang = "xml"> | ||
<Button FontFamily="Segoe MDL2 Assets" | <Button FontFamily="Segoe MDL2 Assets" | ||
| − | + | Content="{Binding Children.Sorting[SomePropertyName], Converter={StaticResource SDToSymbolConverter}}" | |
| − | + | Command="{Binding Children.SortByPropertyCommand}" CommandParameter="SomePropertyName" /> | |
</source> | </source> | ||
{{Category/Version|2.6.1}} | {{Category/Version|2.6.1}} | ||
| + | [[Category:2.6.1|SortByPropertyCommand]] | ||
[[Category:WinX|SortByPropertyCommand]] | [[Category:WinX|SortByPropertyCommand]] | ||
Revision as of 14:32, 18 May 2017
| Name | SortByPropertyCommand |
|---|---|
| Purpose | Sort the child object list by the specified property |
| Version | 2.6.1+ |
| ViewModel | ChildrenListViewModel |
The SortByProperty Command is used to sort the child object list.
The name of the property by which the list should be sorted is specified in the command parameter.
Example:
<Button FontFamily="Segoe MDL2 Assets"
Content="{Binding Children.Sorting[SomePropertyName], Converter={StaticResource SDToSymbolConverter}}"
Command="{Binding Children.SortByPropertyCommand}" CommandParameter="SomePropertyName" />
Content="{Binding Children.Sorting[SomePropertyName], Converter={StaticResource SDToSymbolConverter}}"
Command="{Binding Children.SortByPropertyCommand}" CommandParameter="SomePropertyName" />
