Changes

KeyValueList

176 bytes removed, 08:39, 29 March 2022
=== Example ===
The following example shows how to use the control with two parameters in conjunction with the NavigateToGuidCommand. The first parameter specifies the Guid of the target document and the second parameter specifies the HotSpot that should be highlighted on that very document. This example needs a namespace declaration '''xmlns:ctrls="using:UBIK.WinX.Controls"'''
<source lang = "xml">
<Button Command="{Binding NavigateToGuidCommand}" Content="Test">
</source>
'''To use a Binding in the KeyValueParameter, the following logic has to be used, instead of applying the binding directly on the Value property'''
<source lang = "xml">
<Button Content="{Binding Header}" Command="{Binding CreateChildItemCommand}" x:Name="CreateButton" Tag="{Binding}"> <Button.CommandParameter> <uc:KeyValueList> <uc:KeyValueParameter Key="Parent" Value="{Binding Tag, ElementName=CreateButton}"/> <uc:KeyValueParameter Key="Type" Value="21fc990a-d064-4bee-8d48-3293351f827a"/> </uc:KeyValueList> </Button.CommandParameter> </Button>
</source>
[[Category:Pages with broken file links|KeyValueList]]
== Parameters ==
241
edits