SuspensionForm.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Window x:Class="CollaborativePlatformMain.Form.MessageSubPage.SuspensionForm"
  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="工具栏" WindowStartupLocation="CenterScreen"
  8. SizeToContent="WidthAndHeight" ResizeMode="NoResize" Loaded="Window_Loaded"
  9. Closed="Window_Closed">
  10. <StackPanel>
  11. <!--<StackPanel Background="{DynamicResource Blue}">
  12. <Label Content="工具栏" BorderThickness="0" Foreground="White" Background="{DynamicResource Blue}" HorizontalAlignment="Left"/>
  13. </StackPanel>-->
  14. <StackPanel Height="500" Width="100">
  15. <ScrollViewer VerticalScrollBarVisibility="Auto" Padding="0,0,0,20">
  16. <ItemsControl x:Name="sv_legend" >
  17. <ItemsControl.ItemsPanel>
  18. <ItemsPanelTemplate>
  19. <StackPanel/>
  20. </ItemsPanelTemplate>
  21. </ItemsControl.ItemsPanel>
  22. <ItemsControl.ItemTemplate>
  23. <DataTemplate>
  24. <DockPanel MouseDown="DockPanel_MouseDown" Margin="0,10,0,0">
  25. <Label Name="lb_legendName" Content="{Binding FuncitonName}" Width="110" Background="WhiteSmoke" BorderThickness="0" HorizontalAlignment="Center"/>
  26. </DockPanel>
  27. </DataTemplate>
  28. </ItemsControl.ItemTemplate>
  29. </ItemsControl>
  30. </ScrollViewer>
  31. </StackPanel>
  32. </StackPanel>
  33. </Window>