HeaterGramHolder.xaml 1.4 KB

123456789101112131415161718192021222324252627
  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. <TabControl Background="Transparent">
  17. <TabItem Header="Front view" Style="{StaticResource TabTheme}">
  18. <Image Stretch="Uniform" Source="/Resources/JACKET HEATER ASSM.JPG" />
  19. </TabItem>
  20. <TabItem Header="Left view" Style="{StaticResource TabTheme}">
  21. <Image Stretch="Uniform" Source="/Resources/JACKET HEATER ASSM-1.JPG"/>
  22. </TabItem>
  23. </TabControl>
  24. </Border>
  25. </Grid>
  26. </UserControl>