SeconProjectPage.xaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.SeconProjectPage"
  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" Title="SeconMessagePage" Width="663" Height="430"
  8. Loaded="Window_Loaded">
  9. <DockPanel>
  10. <StackPanel>
  11. <Button Width="180" Height="25" Content="新增项目" Click="bt_addPro" HorizontalAlignment="Left" />
  12. <!--中间-->
  13. <TreeView x:Name="tr_vw" Visibility="Visible" PreviewMouseLeftButtonUp="tv_projectLeftButtonUp"
  14. Width="180" Height="405" HorizontalAlignment="Left" Background="WhiteSmoke">
  15. <TreeView.ItemTemplate>
  16. <HierarchicalDataTemplate ItemsSource="{Binding Children}">
  17. <TextBlock Text="{Binding Name}" />
  18. </HierarchicalDataTemplate>
  19. </TreeView.ItemTemplate>
  20. </TreeView>
  21. </StackPanel>
  22. <!--最右边-->
  23. <StackPanel Name="sp_info" Width="483" Margin="0 10 0 0"
  24. HorizontalAlignment="Left" Visibility="Visible">
  25. <StackPanel >
  26. <Frame Name="threeNewProject" NavigationUIVisibility="Hidden"/>
  27. </StackPanel>
  28. <StackPanel>
  29. </StackPanel>
  30. <StackPanel>
  31. </StackPanel>
  32. </StackPanel>
  33. </DockPanel>
  34. </Page>