12345678910111213141516171819202122232425262728 |
- <UserControl x:Class="MinicsUI.Views.Regions.HeaterGramHolder"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MinicsUI.Views.Regions"
- xmlns:prism="http://prismlibrary.com/"
- prism:ViewModelLocator.AutoWireViewModel="True"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid Background="DarkGray">
- <Border Background="{StaticResource BackgroundColor}" Margin="4">
- <Border.Effect>
- <DropShadowEffect BlurRadius="20" Color="Black" Opacity="0.6" ShadowDepth="5"/>
- </Border.Effect>
- <Grid HorizontalAlignment="Center" Margin="32">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="64"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <Image Grid.Column="0" Stretch="UniformToFill" Source="/Resources/JACKET HEATER ASSM.JPG" />
- <Image Grid.Column="2" Stretch="UniformToFill" Source="/Resources/JACKET HEATER ASSM-1.JPG"/>
- </Grid>
- </Border>
- </Grid>
- </UserControl>
|