8,757
社区成员
发帖
与我相关
我的任务
分享<TreeView x:Name="ProfileTreeView" ItemsSource="{Binding}" >
<TreeView.Resources>
<HierarchicalDataTemplate DataType="{x:Type local:Profile}"
ItemsSource="{Binding Path=IPC}"
ItemTemplate="{StaticResource IPCEditorTemplate}">
<StackPanel Orientation="Horizontal">
<TextBlock>名称</TextBlock>
<TextBox x:Name="NameBox" Text="{Binding Path=Name}" Width="200" Loaded="NameBox_Loaded"/>
</StackPanel>
</HierarchicalDataTemplate>
</TreeView.Resources>