﻿<Page x:Class="Live_Scoring_V1.Master"
      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" 
      xmlns:local="clr-namespace:Live_Scoring_V1"
      mc:Ignorable="d" 
     d:DesignHeight="800" d:DesignWidth="1280" Background="#2e405b"
      Title="Master">
	<Grid x:Name="MainWrapa" >
		<Grid.Background>
			<ImageBrush ImageSource="Images/trasparentBG.png"/>
		</Grid.Background>
		<Viewbox Margin="0" Stretch="Fill">
			<Grid Width="1280" Height="800">
				<Grid.RowDefinitions>
					<RowDefinition Height="50" />
					<RowDefinition Height="630"/>
				</Grid.RowDefinitions>

				<Border Grid.Row="0" Background="#FF26364D" BorderBrush="#1a2433" BorderThickness="0,0,0,1">
					<Grid>
						<Grid.ColumnDefinitions>
							<ColumnDefinition Width="1*" />
							<ColumnDefinition Width="3*" />
							<ColumnDefinition Width="2*" />
						</Grid.ColumnDefinitions>

						<TextBlock  Grid.Column="0"  VerticalAlignment="Center" HorizontalAlignment="Left" Margin="10" Foreground="#ccc" FontSize="18" FontWeight="Bold">Footprint</TextBlock>


						<TextBlock x:Name="FixtureName"  Grid.Column="1" HorizontalAlignment="left" VerticalAlignment="Center" Margin="5,0" Foreground="#ccc" FontSize="18"  FontWeight="Bold"></TextBlock>

						<StackPanel Grid.Column="2" Orientation="Horizontal"  HorizontalAlignment="Right">
						
						</StackPanel>
					</Grid>

				</Border>


			</Grid>

		</Viewbox>
	</Grid>
</Page>
