SERobot1.xaml 1.1 KB

1234567891011121314151617181920212223
  1. <UserControl x:Class="Venus_Themes.UserControls.SERobot1"
  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:Venus_Themes.UserControls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="600" d:DesignWidth="165">
  9. <Grid>
  10. <StackPanel Orientation="Horizontal" RenderTransformOrigin="0.5,0.5">
  11. <StackPanel.RenderTransform>
  12. <TransformGroup>
  13. <ScaleTransform/>
  14. <SkewTransform/>
  15. <RotateTransform Angle="-90"/>
  16. <TranslateTransform/>
  17. </TransformGroup>
  18. </StackPanel.RenderTransform>
  19. <Image Source="pack://application:,,,/Venus_Themes;component/Themes/Images/parts/serobot/SERobot11.png"></Image>
  20. </StackPanel>
  21. </Grid>
  22. </UserControl>