DetailedLegendPage.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031323334
  1. <Page x:Class="CollaborativePlatformMain.Form.MessageSubPage.Legend.DetailedLegendPage"
  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.Legend"
  7. mc:Ignorable="d"
  8. Title="图例详情" Width="663" Height="430"
  9. Loaded="Window_Loaded">
  10. <StackPanel Margin="10,10,0,0">
  11. <Button Margin="0,0,0,5" Content="返回" Click="returnBackBu_Click" HorizontalAlignment="Left" Name="returnBackBu"/>
  12. <ScrollViewer VerticalScrollBarVisibility="Auto" Padding="0,0,0,20">
  13. <ItemsControl x:Name="sv_legend" >
  14. <ItemsControl.ItemsPanel>
  15. <ItemsPanelTemplate>
  16. <WrapPanel/>
  17. </ItemsPanelTemplate>
  18. </ItemsControl.ItemsPanel>
  19. <ItemsControl.ItemTemplate>
  20. <DataTemplate>
  21. <StackPanel MouseDown="StackPanel_MouseDown">
  22. <!-- 第一行文本 图片 -->
  23. <Image Source="{Binding ImagePath}" Width="90" Height="60"/>
  24. <!-- 第二行文本 文件夹名称 -->
  25. <Label Name="lb_legendName" Content="{Binding Name}" BorderThickness="0" />
  26. </StackPanel>
  27. </DataTemplate>
  28. </ItemsControl.ItemTemplate>
  29. </ItemsControl>
  30. </ScrollViewer>
  31. </StackPanel>
  32. </Page>