Platform: WPF, .NET 4, Visual Studio 2010
XAML code is as below:<telerik:RadTreeView x:Name="mytree"  
IsOptionElementsEnabled="True"  
IsLineEnabled="True"    
HorizontalAlignment="Left" AllowDrop="True"> 
<telerik:RadT开发者_高级运维reeViewItem Header="Root of the Tree" x:Name="myroot" AllowDrop="True">  
I intend to add a node in the code behind like the following way:
RadTreeViewItem treeviewitem = new RadTreeViewItem();  
treeviewitem.Header = "some text here";  
myroot.Add(treeviewitem);
However it seems like there is no Add method in the radtreeviewitem class. Intellisense does not give that option when I try to do it. How should I proceed?
Use "myRoot.Items.Add(treeviewitem)" instead.
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论