Foup.xaml 1.0 KB

123456789101112131415161718
  1. <UserControl x:Class="VirgoUI.Client.Controls.Parts.Foup"
  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. mc:Ignorable="d"
  7. d:DesignHeight="66" d:DesignWidth="66">
  8. <UserControl.Resources>
  9. <ResourceDictionary>
  10. <ResourceDictionary.MergedDictionaries>
  11. <ResourceDictionary Source="/VirgoUI;component/Themes/Generic.xaml" />
  12. </ResourceDictionary.MergedDictionaries>
  13. </ResourceDictionary>
  14. </UserControl.Resources>
  15. <Ellipse Stretch="Fill" Fill="{StaticResource idleWafer}" StrokeThickness="2" StrokeLineJoin="Round" Stroke="#FF00641D" Width="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}" Height="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=ActualWidth}">
  16. </Ellipse>
  17. </UserControl>