SeconToolLibraryPage.xaml 1.2 KB

1234567891011121314151617181920212223242526
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.SeconToolLibraryPage"
  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. <StackPanel>
  11. <StackPanel Name="sp_tools" Width="180" HorizontalAlignment="Left" Background="WhiteSmoke">
  12. </StackPanel>
  13. <!--最右边-->
  14. <StackPanel Height="420" VerticalAlignment="Top" Width="483"
  15. Margin="0 10 0 0" HorizontalAlignment="Left">
  16. <WrapPanel Name="wp_tools" Margin="0 0 0 0" Width="490" Height="370" HorizontalAlignment="Left">
  17. </WrapPanel>
  18. <DockPanel>
  19. <Button HorizontalAlignment="Right" Margin="0 0 20 0" Width="110" Click="bt_addTools" Content="添加漂浮工具" />
  20. </DockPanel>
  21. </StackPanel>
  22. </StackPanel>
  23. </Page>