Here is an example of a scoreboard i made up using the ScoreBoardHD2.xaml as a base.I have also attached a zip file containing all the files including the shortcut file.
Shortcut allow to add 1 to Home, Away, Period, and (Start, Stop, Pause, Reset) Clock.
Enjoy<UserControl x:Class="ScoreBoard"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300" Width="1920" Height="1080">
<Grid>
------ Added Background image ------- This Comments here for explanation only and not in Original File
<Image HorizontalAlignment="Left" Margin="0,0,0,0" Name="BackgroundImage" VerticalAlignment="Top" Width="1920" Height="1080" Source="background.jpg" Opacity="0.9" /> <Canvas>
<Rectangle Canvas.Left="625" Canvas.Top="800" Height="104" Name="Rectangle1" Width="1290" HorizontalAlignment="Center" VerticalAlignment="Center" RadiusX="8" RadiusY="8" Stroke="DarkRed" Opacity="0.9">
<Rectangle.Fill>
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FFFF0000" Offset="0" />
<GradientStop Color="Black" Offset="1" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
------ Added Home Team Box and Label ------- This Comments here for explanation only and not in Original File <Border BorderBrush="White" BorderThickness="4" Canvas.Left="640" Canvas.Top="810" Height="72" Name="Border1" Width="300" CornerRadius="6">
<TextBlock FontSize="48" Foreground="White" Height="66" Name="HomeTitle" Text="Home" TextAlignment="Center" Width="150" HorizontalAlignment="Left" />
</Border>
------ Added Away Team Box and Label ------- This Comments here for explanation only and not in Original File <Border BorderBrush="White" BorderThickness="4" Canvas.Left="960" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border2" Width="300">
<TextBlock FontSize="48" Foreground="White" Height="66" Name="AwayTitle" Text="Away" TextAlignment="Center" Width="150" HorizontalAlignment="Left" />
</Border>
------ Added Home Period Box and Label ------- This Comments here for explanation only and not in Original File
<Border BorderBrush="White" BorderThickness="4" Canvas.Left="1280" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border3" Width="300">
<TextBlock FontSize="48" Foreground="White" Height="66" Name="PeriodTitle" Text="Period" TextAlignment="Center" Width="150" HorizontalAlignment="Left" />
</Border>
------ Added Clock Box and Label ------- This Comments here for explanation only and not in Original File
<Border BorderBrush="White" BorderThickness="4" Canvas.Left="1600" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border4" Width="300">
<TextBlock FontSize="48" Foreground="White" Height="66" Name="TimeTitle" Text="Time" TextAlignment="Center" Width="150" HorizontalAlignment="Left" />
</Border>
------ Added Home Score and Value ------- This Comments here for explanation only and not in Original File <Border BorderBrush="White" BorderThickness="4" Canvas.Left="790" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border5" Width="150">
<TextBlock FontSize="48" Foreground="Black" Name="HomeScore" Text="0" TextAlignment="Center" Background="White" />
</Border>
------ Added Away Score and Value ------- This Comments here for explanation only and not in Original File
<Border BorderBrush="White" BorderThickness="4" Canvas.Left="1110" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border6" Width="150">
<TextBlock FontSize="48" Foreground="Black" Name="AwayScore" Text="0" TextAlignment="Center" Background="White" />
</Border>
------ Added Period and Value ------- This Comments here for explanation only and not in Original File
<Border BorderBrush="White" BorderThickness="4" Canvas.Left="1430" Canvas.Top="810" CornerRadius="6" Height="72" Name="Border7" Width="150">
<TextBlock FontSize="48" Foreground="Black" Name="PeriodValue" Text="1" TextAlignment="Center" Background="White" />
</Border>
------ Added Clock and Value ------- This Comments here for explanation only and not in Original File
<Border BorderBrush="White" BorderThickness="4" Canvas.Left="1750" Canvas.Top="810" CornerRadius="6"
Height="72" Name="Border8" Width="150">
<TextBlock FontSize="48" Foreground="Black" Name="TimeValue" Text="20:00" TextAlignment="Center" Background="White" />
</Border>
</Canvas>
</Grid>
</UserControl>
File Attachment(s):
ScoreBoardHD3.xaml.zip
(997kb) downloaded 101 time(s).You cannot view/download attachments. Try to login or register.