Jump to: navigation, search

KeyValueList


Revision as of 10:44, 13 November 2018 by JKN (Talk | contribs) (Created page with "{{XAMLControlInfoBox | title = {{PAGENAME}} | name = {{PAGENAME}} | namespace= UBIK.WinX.Controls | image = [[File:SY_{{PAGENAME}}.png|220px]] | imagecaption = imagecaption |...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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

    <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="05d2e931-ad11-4407-a8e6-337f6779f96b" />
            </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