MultiItemUpdateNotification.xaml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <UserControl x:Class="MediaBrowser.ServerApplication.Controls.MultiItemUpdateNotification"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. mc:Ignorable="d"
  7. d:DesignHeight="300" d:DesignWidth="300">
  8. <Grid MaxHeight="400" MaxWidth="600" Margin="20">
  9. <Border BorderThickness="0" Background="#333333">
  10. <Border.Effect>
  11. <DropShadowEffect BlurRadius="25" ShadowDepth="0">
  12. </DropShadowEffect>
  13. </Border.Effect>
  14. </Border>
  15. <Grid>
  16. <Grid.Background>
  17. <LinearGradientBrush SpreadMethod="Reflect" ColorInterpolationMode="SRgbLinearInterpolation" StartPoint="0,0" EndPoint="0,1" >
  18. <GradientStop Color="#ff222222" Offset="0" />
  19. <GradientStop Color="#ffbbbbbb" Offset="1" />
  20. </LinearGradientBrush>
  21. </Grid.Background>
  22. <Grid Margin="20">
  23. <Grid.RowDefinitions>
  24. <RowDefinition Height="auto"></RowDefinition>
  25. <RowDefinition Height="*"></RowDefinition>
  26. </Grid.RowDefinitions>
  27. <TextBlock x:Name="header" FontSize="26" Foreground="White" Grid.Row="0"></TextBlock>
  28. <UniformGrid x:Name="itemsPanel" Columns="4" Margin="0 20 0 0" Grid.Row="1"></UniformGrid>
  29. </Grid>
  30. </Grid>
  31. </Grid>
  32. </UserControl>