LayerList.xaml
上传用户:huazai0421
上传日期:2008-05-30
资源大小:405k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. <UserControl x:Class="ESRI.ArcGIS.Samples.LayerList"
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Grid>
  5. <TextBlock Text="No layers added" Foreground="White" x:Name="noLayers" />
  6. <ListBox x:Name="list" Visibility="Collapsed" Background="Transparent">
  7. <ListBox.ItemTemplate>
  8. <DataTemplate>
  9. <StackPanel Orientation="Horizontal">
  10. <StackPanel VerticalAlignment="Center">
  11. <Image Source="/Images/uparrow.png" Cursor="Hand" Margin="0,1,0,0" MouseLeftButtonDown="MoveUp_MouseLeftButtonDown" Width="7" Height="4" />
  12. <Image Source="/Images/uparrow.png" Cursor="Hand" Margin="0,8,0,0" MouseLeftButtonDown="MoveDown_MouseLeftButtonDown" Width="7" Height="4" >
  13. <Image.RenderTransform>
  14. <ScaleTransform ScaleX="1" ScaleY="-1" />
  15. </Image.RenderTransform>
  16. </Image>
  17. </StackPanel>
  18. <CheckBox IsChecked="{Binding Visible}" Content="" Margin="0"
  19.   Checked="CheckBox_Checked" Unchecked="CheckBox_Checked" />
  20. <Slider Margin="-5,0,0,0"
  21. Minimum="0" Maximum="1" Value="{Binding Opacity}" Height="18"
  22. ValueChanged="Slider_ValueChanged" Width="25" />
  23. <TextBlock Foreground="White" Text="{Binding ID}" Margin="5,0,0,0" />
  24. </StackPanel>
  25. </DataTemplate>
  26. </ListBox.ItemTemplate>
  27. </ListBox>
  28. </Grid>
  29. </UserControl>