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

SilverLight

开发平台:

C#

  1. <ResourceDictionary
  2.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  3.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:ESRI.ArcGIS.Samples"
  5. >
  6. <Style TargetType="local:ConfiguratorContainer">
  7. <Setter Property="VerticalAlignment" Value="Top" />
  8. <Setter Property="HorizontalContentAlignment" Value="Stretch" />
  9. <Setter Property="HorizontalAlignment" Value="Stretch" />
  10. <Setter Property="Margin" Value="0,0,0,2" />
  11. <Setter Property="Template">
  12. <Setter.Value>
  13. <ControlTemplate TargetType="local:ConfiguratorContainer">
  14. <Border BorderBrush="Gray" BorderThickness="1">
  15. <StackPanel Background="#333333" Margin="{TemplateBinding Margin}">
  16. <Grid Height="16" Background="Black">
  17. <Rectangle Fill="{StaticResource ReflectionGradient}" Opacity=".5" />
  18. <TextBlock Text="{TemplateBinding Title}" Foreground="White" 
  19. FontWeight="Bold" HorizontalAlignment="Left" />
  20. </Grid>
  21. <Border Padding="3">
  22. <ContentPresenter
  23. x:Name="contentPresenter"
  24. Content="{TemplateBinding Content}"
  25. ContentTemplate="{TemplateBinding ContentTemplate}"
  26. VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
  27. HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
  28. Margin="{TemplateBinding Padding}"/>
  29. </Border>
  30. </StackPanel>
  31. </Border>
  32. </ControlTemplate>
  33. </Setter.Value>
  34. </Setter>
  35. </Style>
  36. </ResourceDictionary>