Resources/XAML/AppControlManager.xaml

<UserControl xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Style="{StaticResource Page_Style}">
    <Grid x:Name="ParentGrid">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="Auto" />
            <RowDefinition Height="Auto" />
            <RowDefinition Height="Auto" />
        </Grid.RowDefinitions>
 
        <TextBlock Grid.Row="0" Text="Use this page to install the AppControl Manager. Since it uses certificate generated on your device, Smart App Control might not let it run. Smart App Control must be off either way if you intend to take full control of Applicaton Control in your system using the AppControl Manager."
            Foreground="Black"
            FontSize="14"
            Margin="20,10,20,15"
            FontWeight="Normal"
            VerticalAlignment="Center"
            HorizontalAlignment="Center" TextWrapping="Wrap"/>
 
        <Button Grid.Row="1" HorizontalAlignment="Center" x:Name="InstallAppControlManagerButton" Style="{StaticResource CustomButtonStyle2}" Margin="0,20,0,10" ToolTipService.InitialShowDelay="1000" ToolTip="Installs the AppControl Manager on the system if it isn't already installed.">
            <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
                <Image x:Name="InstallAppControlManagerButtonIcon" Width="40" Height="30"/>
                <TextBlock Text="Install the AppControl Manager" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,8,0" FontWeight="SemiBold"/>
            </StackPanel>
        </Button>
 
        <ProgressBar x:Name="MainProgressBar" Value="0" Minimum="0" MaxHeight="100"
            Height="5"
            Background="Transparent"
            Foreground="DeepPink"
            Margin="20,10,20,10"
            BorderThickness="0"
            Grid.Row="2"
            Visibility="Collapsed"
            IsIndeterminate="False" />
 
        <StackPanel Orientation="Horizontal" Grid.Row="3" HorizontalAlignment="Center" Margin="20">
 
            <Button x:Name="ViewDemoOnYouTubeButton" Style="{StaticResource CustomButtonStyle2}" Margin="0,0,10,0" ToolTipService.InitialShowDelay="1000" ToolTip="Video the demo of the AppControl Manager on YouTube, opens a tab in the web browser">
                <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
                    <Image x:Name="ViewDemoOnYouTubeButtonIcon" Width="40" Height="30"/>
                    <TextBlock Text="View Demo on YouTube" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,8,0" FontWeight="SemiBold"/>
                </StackPanel>
            </Button>
 
            <Button x:Name="AccessTheGuideOnGitHubButton" Style="{StaticResource CustomButtonStyle2}" Margin="10,0,0,0" ToolTipService.InitialShowDelay="1000" ToolTip="Access the AppControl Manager guide on the GitHub wiki, opens a tab in the web browser">
                <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
                    <Image x:Name="AccessTheGuideOnGitHubButtonIcon" Width="40" Height="30"/>
                    <TextBlock Text="Access the Guide on GitHub" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,8,0" FontWeight="SemiBold"/>
                </StackPanel>
            </Button>
 
        </StackPanel>
 
    </Grid>
</UserControl>