Jump to: navigation, search

Difference between revisions of "KeyValueList"


(Example)
Line 20: Line 20:
 
             <ctrls:KeyValueList>
 
             <ctrls:KeyValueList>
 
                 <ctrls:KeyValueParameter Key="Guid" Value="c9ad0e93-395a-4b4e-a526-fb5d5e42f8ff" />
 
                 <ctrls:KeyValueParameter Key="Guid" Value="c9ad0e93-395a-4b4e-a526-fb5d5e42f8ff" />
                 <ctrls:KeyValueParameter Key="HotSpot" Value="05d2e931-ad11-4407-a8e6-337f6779f96b" />
+
                 <ctrls:KeyValueParameter Key="HotSpot" Value="b9e855f9-d3be-4b60-b4e3-19398f5925b5" />
 
             </ctrls:KeyValueList>
 
             </ctrls:KeyValueList>
 
         </Button.CommandParameter>
 
         </Button.CommandParameter>
Line 26: Line 26:
 
</source>
 
</source>
  
[[Category:Pages with broken file links|KeyValueList]]
+
 
  
 
== Parameters ==
 
== Parameters ==
Line 33: Line 33:
 
==See also==
 
==See also==
 
* [[XAML]]
 
* [[XAML]]
 +
 +
[[Category:Pages with broken file links|KeyValueList]]

Revision as of 08:48, 19 July 2019

KeyValueList
220px
imagecaption
Name KeyValueList
Namespace UBIK.WinX.Controls
Purpose Define a complex parameter type in XAML
Version 3.5+

Usage

The KeyValueList controls allows to declare a complex parameter type from within XAML markup. It can hold any number of KeyValueParameter elements, where each consists of a string Key and and associated value.


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"

    <Button Command="{Binding NavigateToGuidCommand}" Content="Test">
        <Button.CommandParameter>
            <ctrls:KeyValueList>
                <ctrls:KeyValueParameter Key="Guid" Value="c9ad0e93-395a-4b4e-a526-fb5d5e42f8ff" />
                <ctrls:KeyValueParameter Key="HotSpot" Value="b9e855f9-d3be-4b60-b4e3-19398f5925b5" />
            </ctrls:KeyValueList>
        </Button.CommandParameter>
    </Button>


Parameters

KeyValueParameter can be added as child objects to an KeyValueList control. Each parameter object needs a unique Key and a Value, where the latter can be either a constant or dynamic value supplied through a binding.

See also