Ampel.xaml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <UserControl x:Class="GCHR.View.Ampel"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Height="15" Width="45" BorderThickness="0">
  5. <UserControl.Resources>
  6. <Storyboard x:Key="sbWorkingAnimation" AutoReverse="False" RepeatBehavior="Forever">
  7. <!--<ColorAnimation Storyboard.TargetName="Grün"
  8. Storyboard.TargetProperty="Fill.Color"
  9. From="Transparent" To="Green"
  10. AutoReverse="True"
  11. BeginTime="0:0:0" Duration="0:0:.5" />-->
  12. <ColorAnimation Storyboard.TargetName="Gelb"
  13. Storyboard.TargetProperty="Fill.Color"
  14. From="Transparent" To="Yellow"
  15. AutoReverse="True"
  16. BeginTime="0:0:0" Duration="0:0:1.5" />
  17. <!--<ColorAnimation Storyboard.TargetName="Rot"
  18. Storyboard.TargetProperty="Fill.Color"
  19. From="Transparent" To="Red"
  20. AutoReverse="True"
  21. BeginTime="0:0:2.0" Duration="0:0:.5" />-->
  22. </Storyboard>
  23. </UserControl.Resources>
  24. <Grid Name="mainCanvas" Background="Transparent">
  25. <!--<Button Background="Transparent" Click="Button_Click" Panel.ZIndex="100" BorderThickness="0" Foreground="Transparent" Focusable="True" BorderBrush="Transparent">
  26. <Button.Triggers>
  27. <EventTrigger RoutedEvent="Button.Click">
  28. </EventTrigger>
  29. </Button.Triggers>
  30. </Button>-->
  31. <!--<Label Name="Grün" Background="Transparent" HorizontalAlignment="Left" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Green"></Label>
  32. <Label Name="Gelb" Background="Transparent" HorizontalAlignment="Center" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Yellow"></Label>
  33. <Label Name="Rot" Background="Transparent" HorizontalAlignment="Right" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Red"></Label>-->
  34. <Rectangle Name="Grün" Width="15" Canvas.Top="-1" HorizontalAlignment="Left">
  35. <Rectangle.Fill>
  36. <SolidColorBrush Color="Transparent" Opacity="1" />
  37. </Rectangle.Fill>
  38. </Rectangle>
  39. <Rectangle Name="Gelb" Margin="15,0" Canvas.Top="-1">
  40. <Rectangle.Fill>
  41. <SolidColorBrush Color="Transparent" Opacity="1" />
  42. </Rectangle.Fill>
  43. </Rectangle>
  44. <Rectangle Name="Rot" Width="15" Margin="30,0,0,0" Canvas.Top="-1">
  45. <Rectangle.Fill>
  46. <SolidColorBrush Color="Transparent" Opacity="1" />
  47. </Rectangle.Fill>
  48. </Rectangle>
  49. <Button MouseEnter="BtnStatusMouseEnter" Click="BtnStatusClick" HorizontalAlignment="Left" Margin="0" Name="btnGruen" Width="15" BorderThickness="0" Background="Green" Height="15" Visibility="Hidden" IsEnabled="True" Focusable="False" />
  50. <Button MouseEnter="BtnStatusMouseEnter" Click="BtnStatusClick" Background="Yellow" BorderThickness="0" Height="15" Margin="15,0" Name="btnGelb" VerticalAlignment="Bottom" Width="15" Visibility="Hidden" Focusable="False" />
  51. <Button MouseEnter="BtnStatusMouseEnter" Click="BtnStatusClick" Background="Red" BorderThickness="0" Height="15" Margin="0" Name="btnRot" VerticalAlignment="Bottom" Width="15" HorizontalAlignment="Right" Visibility="Hidden" Focusable="False" />
  52. <ProgressBar Height="15" Margin="0,0,0,0" Name="pbThread" VerticalAlignment="Top" HorizontalAlignment="Left" Width="45" Background="White" Foreground="DarkSlateGray" Value="0" SmallChange="1" IsIndeterminate="True" Visibility="Hidden" />
  53. <Button MouseEnter="BtnStatusMouseEnter" Click="BtnStatusClick" Background="Transparent" BorderThickness="0" Height="15" Margin="0" Name="btnStatus" VerticalAlignment="Bottom" Width="45" HorizontalAlignment="Right" Visibility="Hidden" Opacity="0" Focusable="False" />
  54. </Grid>
  55. </UserControl>