Changes
Created page with "{{XAMLControlInfoBox | title = {{PAGENAME}} | name = {{PAGENAME}} | namespace= UBIK.WinX.Controls | image = [[File:SY_{{PAGENAME}}.png|220px]] | imagecaption = imagecaption |..."
{{XAMLControlInfoBox
| title = {{PAGENAME}}
| name = {{PAGENAME}}
| namespace= UBIK.WinX.Controls
| image = [[File:SY_{{PAGENAME}}.png|220px]]
| imagecaption = imagecaption
| 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
<source lang = "xml">
<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>
</source>
== 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==
* [[XAML]]
| title = {{PAGENAME}}
| name = {{PAGENAME}}
| namespace= UBIK.WinX.Controls
| image = [[File:SY_{{PAGENAME}}.png|220px]]
| imagecaption = imagecaption
| 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
<source lang = "xml">
<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>
</source>
== 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==
* [[XAML]]