Very simple question. How do I statically change content? I figured something like this example:
01.
<
telerik:RadNavigationView
HorizontalAlignment
=
"Stretch"
PaneHeader
=
"Header"
VerticalAlignment
=
"Stretch"
>
02.
<
telerik:RadNavigationView.Items
>
03.
<
telerik:RadNavigationViewItem
Content
=
"Navigation item 1"
>
04.
<
StackPanel
>
05.
<
Label
Content
=
"Test 1"
/>
06.
</
StackPanel
>
07.
</
telerik:RadNavigationViewItem
>
08.
<
telerik:RadNavigationViewItem
Content
=
"Navigation item 2"
>
09.
<
StackPanel
>
10.
<
Label
Content
=
"Test 2"
/>
11.
</
StackPanel
>
12.
</
telerik:RadNavigationViewItem
>
13.
<
telerik:RadNavigationViewItem
Content
=
"Navigation item 3"
>
14.
<
StackPanel
>
15.
<
Label
Content
=
"Test 3"
/>
16.
</
StackPanel
>
17.
</
telerik:RadNavigationViewItem
>
18.
</
telerik:RadNavigationView.Items
>
19.
</
telerik:RadNavigationView
>
But it doesn't work, saying that content is set multiple times.