SeconMessagePage.xaml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.SeconMessagePage"
  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="SeconMessagePage" Width="663" Height="430"
  9. Loaded="Window_Loaded">
  10. <DockPanel>
  11. <!--中间-->
  12. <StackPanel Height="430">
  13. <DockPanel Margin="0 0 0 0" Name="sp_hzNavigation" Width="180" Height="30"
  14. HorizontalAlignment="Left" >
  15. <Menu>
  16. <MenuItem Header="通知公告" Click="me_announcementClick" />
  17. <MenuItem Header="项目" Click="me_projectClick" />
  18. <MenuItem Header="系统" Click="me_systemClick" />
  19. </Menu>
  20. </DockPanel>
  21. <StackPanel Width="180" Height="400" Background="WhiteSmoke" Name="me_message">
  22. </StackPanel>
  23. </StackPanel>
  24. <ScrollViewer VerticalScrollBarVisibility="Auto" Height="400" Width="483">
  25. <StackPanel Margin="10,0,0,0" Name="me_right" HorizontalAlignment="Left" >
  26. </StackPanel>
  27. </ScrollViewer>
  28. </DockPanel>
  29. </Page>