SeconContactsPage.xaml 1.4 KB

1234567891011121314151617181920212223242526272829
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.SeconContactsPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:CollaborativePlatformMain.Form.MessageSubPage"
  7. mc:Ignorable="d"
  8. Title="SeconContactsPage" Width="663" Height="430"
  9. Loaded="Window_Loaded">
  10. <DockPanel Name="dp_contacts">
  11. <StackPanel Name="sp_contacts" Width="180" HorizontalAlignment="Left" Background="WhiteSmoke">
  12. <TreeView x:Name="tr_Contacts" PreviewMouseLeftButtonUp="tv_projectLeftButtonUp"
  13. Width="180" Height="430" HorizontalAlignment="Left" Background="WhiteSmoke">
  14. <TreeView.ItemTemplate>
  15. <HierarchicalDataTemplate ItemsSource="{Binding SubDatas}">
  16. <TextBlock Text="{Binding Name}" />
  17. </HierarchicalDataTemplate>
  18. </TreeView.ItemTemplate>
  19. </TreeView>
  20. </StackPanel>
  21. <!--最右边-->
  22. <StackPanel Height="420" VerticalAlignment="Top" Width="483"
  23. Margin="0 10 0 0" HorizontalAlignment="Left">
  24. </StackPanel>
  25. </DockPanel>
  26. </Page>