0
私はWPFツリーを使用して親子構造体を作成しようとしています。WPFツリー親子挿入:
Tree
->Parent
->Child
->Grand Child.
私は子供のために挿入できない以下のコードを書いています。これを解決するために私を助けてください。
<Window x:Class="NewTree_DynamicNode.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<TreeView Name="treeFileSystem" TreeViewItem.Expanded="treeFileSystem_Expanded_1">
<TreeViewItem Header="Categories" x:Name="_ImageTree" Tag="hi"
x:FieldModifier="private">
<TreeViewItem TextBlock.FontStyle="Italic"
Header="Loading..." Name="treeFileSystem2"/>
</TreeViewItem>
</TreeView>
</Grid>
</Window>
private void treeFileSystem_Expanded_1(object sender, RoutedEventArgs e)
{
this._ImageTree = (TreeViewItem)e.OriginalSource;
this._ImageTree.Items.Clear();
try
{
for(int i=0 ; i<2; i++)
{
TreeViewItem temp = new TreeViewItem();
TreeViewItem temp1 = new TreeViewItem();
temp.Header = "Parent";
temp1.Header = "Child";
temp.Items.Add(temp1);
this._ImageTree.Items.Add(temp);
}
}
catch
{
/////
}
}
こんにちは親:私はツリーをクリックすると親と一緒に開く必要があり、親をクリックすると子と一緒に開く必要があります....などツリー構造のツリー--->親---->子供-----> GrandChild – vrbilgi
ヘッダーを設定するロジックが追加されました –