SignalLight.xaml 1009 B

1234567891011121314151617181920
  1. <UserControl x:Class="MaintainModule.Controls.SignalLight"
  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:MaintainModule.Controls"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <UserControl.Resources>
  10. <ResourceDictionary >
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="/UICommon;component/Resources.xaml"/>
  13. </ResourceDictionary.MergedDictionaries>
  14. </ResourceDictionary>
  15. </UserControl.Resources>
  16. <Grid>
  17. <Ellipse Stroke="{StaticResource DarkBorderColor}" Fill="{StaticResource NiceGreen}" StrokeThickness="2" Width="16" Height="16"></Ellipse>
  18. </Grid>
  19. </UserControl>