12345678910111213 |
- <UserControl x:Class="CyberX8_Themes.UserControls.PrewetTankControl"
- 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:CyberX8_Themes.UserControls"
- mc:Ignorable="d" Name="self"
- d:DesignHeight="80" d:DesignWidth="50">
- <Canvas x:Name="box" Height="69" Width="32" >
- <Image x:Name="TankImage" Source="pack://application:,,,/CyberX8_Themes;component/Themes/Images/parts/prewetTank.png" Panel.ZIndex="1" Height="69" Width="32" HorizontalAlignment="Center" VerticalAlignment="Center" />
- </Canvas>
- </UserControl>
|