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" FontSize="16"> <Grid x:Name="ParentGrid"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <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 on your system. You can choose to install it from Microsoft Store (Recommended) or install it via GitHub as the source." FontSize="14" Margin="20,10,20,15" FontWeight="Normal" VerticalAlignment="Center" HorizontalAlignment="Center" TextWrapping="Wrap"/> <Button Grid.Row="1" HorizontalAlignment="Center" x:Name="InstallAppControlManagerFromMicrosoftStoreButton" Margin="0,20,0,10" ToolTipService.InitialShowDelay="1000" ToolTip="Opens Microsoft Store and lets you install AppControl Manager from there."> <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> <Image x:Name="InstallAppControlManagerFromMicrosoftStoreButtonIcon" Width="256" Height="75"/> <TextBlock Text="Install from Microsoft Store" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="8,0,8,0" FontWeight="SemiBold"/> </StackPanel> </Button> <ProgressBar x:Name="MainProgressBar" Value="0" Minimum="0" MaxHeight="100" Height="5" 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" 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" 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> <Button Grid.Row="4" HorizontalAlignment="Center" x:Name="InstallAppControlManagerButton" 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 from GitHub source" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,0,8,0" FontWeight="SemiBold"/> </StackPanel> </Button> </Grid> </UserControl> |