This question is locked. New answers and comments are not allowed.
Here my code:
I just try to change the control in the item CommAchats for a Image-Text-and 2 imagebuton. For now I just test to display "Hello" instead of the "normal" treeview item. No copile error, but runtime always display the old TreeViewItem
Thanks
<TelNavigation:RadTreeView VerticalAlignment="Stretch" SelectionMode="Single" AllowDrop="False"> <TelNavigation:RadTreeViewItem Header="Achats" IsExpanded="True" DefaultImageSrc="Images/Icones/Module.png"> <TelNavigation:RadTreeViewItem Name="CommAchats" Header="Commande Achats" IsExpanded="False" DefaultImageSrc="Images/Icones/Module.png"> <TelNavigation:RadTreeViewItem.ItemsPanel> <ItemsPanelTemplate> <TextBlock Text="HELLO"></TextBlock> </ItemsPanelTemplate> </TelNavigation:RadTreeViewItem.ItemsPanel> </TelNavigation:RadTreeViewItem> <TelNavigation:RadTreeViewItem Name="Fournisseurs" Header="Fournisseurs" IsExpanded="False" DefaultImageSrc="Images/Icones/Module.png" /> </TelNavigation:RadTreeViewItem> <TelNavigation:RadTreeViewItem Header="Ventes" IsExpanded="False" DefaultImageSrc="Images/Icones/Module.png"> <TelNavigation:RadTreeViewItem Name="CommClients" Header="Comm Clients" IsExpanded="False" DefaultImageSrc="Images/Icones/Module.png" /> <TelNavigation:RadTreeViewItem Name="Clients" Header="Clients" IsExpanded="False" DefaultImageSrc="Images/Icones/Module.png" /> </TelNavigation:RadTreeViewItem> </TelNavigation:RadTreeView>Thanks
