HeaterGramHolder.xaml 1.4 KB

12345678910111213141516171819202122232425262728
  1. <UserControl x:Class="MinicsUI.Views.Regions.HeaterGramHolder"
  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. xmlns:local="clr-namespace:MinicsUI.Views.Regions"
  7. xmlns:prism="http://prismlibrary.com/"
  8. prism:ViewModelLocator.AutoWireViewModel="True"
  9. mc:Ignorable="d"
  10. d:DesignHeight="450" d:DesignWidth="800">
  11. <Grid Background="DarkGray">
  12. <Border Background="{StaticResource BackgroundColor}" Margin="4">
  13. <Border.Effect>
  14. <DropShadowEffect BlurRadius="20" Color="Black" Opacity="0.6" ShadowDepth="5"/>
  15. </Border.Effect>
  16. <Grid HorizontalAlignment="Center" Margin="32">
  17. <Grid.ColumnDefinitions>
  18. <ColumnDefinition Width="auto"/>
  19. <ColumnDefinition Width="64"/>
  20. <ColumnDefinition Width="auto"/>
  21. </Grid.ColumnDefinitions>
  22. <Image Grid.Column="0" Stretch="UniformToFill" Source="/Resources/JACKET HEATER ASSM.JPG" />
  23. <Image Grid.Column="2" Stretch="UniformToFill" Source="/Resources/JACKET HEATER ASSM-1.JPG"/>
  24. </Grid>
  25. </Border>
  26. </Grid>
  27. </UserControl>