aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Controls/HeaderLoadingControl.xaml
blob: 5b07e1fa260bdc758f2c957e5721104d4c0e3f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<UserControl x:Class="Tango.PPC.UI.Controls.HeaderLoadingControl"
             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:touch="clr-namespace:Tango.Touch.Controls;assembly=Tango.Touch"
             xmlns:local="clr-namespace:Tango.PPC.UI.Controls"
             mc:Ignorable="d" 
             d:DesignHeight="80" d:DesignWidth="300" IsHitTestVisible="False">
    <Grid>
        <StackPanel Orientation="Horizontal" Margin="20 0 0 0">
            <touch:TouchBusyIndicator IsIndeterminate="True" Width="50" Height="50" />
            <TextBlock VerticalAlignment="Center" Margin="10 0 0 0">Loading...</TextBlock>
        </StackPanel>
    </Grid>
</UserControl>