123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <UserControl x:Class="GCHR.View.Ampel"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Height="15" Width="45" BorderThickness="0">
-
- <UserControl.Resources>
- <Storyboard x:Key="sbWorkingAnimation" AutoReverse="False" RepeatBehavior="Forever">
- <!--<ColorAnimation Storyboard.TargetName="Grün"
- Storyboard.TargetProperty="Fill.Color"
- From="Transparent" To="Green"
- AutoReverse="True"
- BeginTime="0:0:0" Duration="0:0:.5" />-->
- <ColorAnimation Storyboard.TargetName="Gelb"
- Storyboard.TargetProperty="Fill.Color"
- From="Transparent" To="Yellow"
- AutoReverse="True"
- BeginTime="0:0:0" Duration="0:0:1.5" />
- <!--<ColorAnimation Storyboard.TargetName="Rot"
- Storyboard.TargetProperty="Fill.Color"
- From="Transparent" To="Red"
- AutoReverse="True"
- BeginTime="0:0:2.0" Duration="0:0:.5" />-->
- </Storyboard>
- </UserControl.Resources>
-
- <Grid Name="mainCanvas" Background="Transparent">
- <!--<Button Background="Transparent" Click="Button_Click" Panel.ZIndex="100" BorderThickness="0" Foreground="Transparent" Focusable="True" BorderBrush="Transparent">
- <Button.Triggers>
- <EventTrigger RoutedEvent="Button.Click">
-
- </EventTrigger>
- </Button.Triggers>
- </Button>-->
-
-
- <!--<Label Name="Grün" Background="Transparent" HorizontalAlignment="Left" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Green"></Label>
- <Label Name="Gelb" Background="Transparent" HorizontalAlignment="Center" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Yellow"></Label>
- <Label Name="Rot" Background="Transparent" HorizontalAlignment="Right" Width="15" Height="15" Panel.ZIndex="1" BorderThickness="15" Foreground="Transparent" Focusable="False" BorderBrush="Red"></Label>-->
- <Rectangle Name="Grün" Width="15" Canvas.Top="-1" HorizontalAlignment="Left">
- <Rectangle.Fill>
- <SolidColorBrush Color="Transparent" Opacity="1" />
- </Rectangle.Fill>
- </Rectangle>
-
- <Rectangle Name="Gelb" Margin="15,0" Canvas.Top="-1">
- <Rectangle.Fill>
- <SolidColorBrush Color="Transparent" Opacity="1" />
- </Rectangle.Fill>
- </Rectangle>
-
- <Rectangle Name="Rot" Width="15" Margin="30,0,0,0" Canvas.Top="-1">
- <Rectangle.Fill>
- <SolidColorBrush Color="Transparent" Opacity="1" />
- </Rectangle.Fill>
- </Rectangle>
- <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" />
- <Button MouseEnter="BtnStatusMouseEnter" Click="BtnStatusClick" Background="Yellow" BorderThickness="0" Height="15" Margin="15,0" Name="btnGelb" VerticalAlignment="Bottom" Width="15" Visibility="Hidden" Focusable="False" />
- <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" />
- <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" />
- <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" />
- </Grid>
-
- </UserControl>
|