|
1 | 1 | <UserControl x:Class="WaveTech.Scutex.Licensing.Gui.RegisterContent"
|
2 | 2 | xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
3 | 3 | xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
4 |
| - xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
5 |
| - xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
6 |
| - xmlns:ctrls="clr-namespace:WaveTech.Scutex.Licensing.Gui.Controls" |
7 |
| - mc:Ignorable="d" Background="Transparent" |
8 |
| - d:DesignHeight="300" d:DesignWidth="300"> |
| 4 | + xmlns:ctrls="clr-namespace:WaveTech.Scutex.Licensing.Gui.Controls" |
| 5 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 6 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 7 | + Background="Transparent" |
| 8 | + d:DesignHeight="300" |
| 9 | + d:DesignWidth="300" |
| 10 | + mc:Ignorable="d"> |
9 | 11 | <Grid>
|
10 | 12 | <Grid.ColumnDefinitions>
|
11 | 13 | <ColumnDefinition />
|
|
18 | 20 | <RowDefinition Height="96*" />
|
19 | 21 | </Grid.RowDefinitions>
|
20 | 22 |
|
21 |
| - <TextBlock Grid.Row="0" Text="Please enter your License Key" FontSize="20" Foreground="Azure" VerticalAlignment="Center" HorizontalAlignment="Center"/> |
22 |
| - <ctrls:MaskedTextBox x:Name="txtLicenseKey" Grid.Row="1" FontSize="20" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5,5,5,5" ></ctrls:MaskedTextBox> |
23 |
| - |
24 |
| - <TextBlock Grid.Row="2" x:Name="lblResult" FontSize="14" VerticalAlignment="Center" HorizontalAlignment="Center" /> |
25 |
| - <ProgressBar Grid.Row="3" x:Name="pdgActivationProgress" IsIndeterminate="True" Visibility="Collapsed" Margin="0,0,0,2.5"/> |
26 |
| - <Button x:Name="btnActivite" Grid.Row="4" Content="Activate this License Key" Margin="15,15,15,15" Click="btnActivite_Click" /> |
| 23 | + <TextBlock Grid.Row="0" |
| 24 | + HorizontalAlignment="Center" |
| 25 | + VerticalAlignment="Center" |
| 26 | + FontSize="20" |
| 27 | + Foreground="Azure" |
| 28 | + Text="Please enter your License Key" /> |
| 29 | + <ctrls:MaskedTextBox x:Name="txtLicenseKey" |
| 30 | + Grid.Row="1" |
| 31 | + Margin="5,5,5,5" |
| 32 | + HorizontalAlignment="Center" |
| 33 | + VerticalAlignment="Center" |
| 34 | + FontSize="20" |
| 35 | + FontWeight="Bold" |
| 36 | + InputMask="wwwww-wwwww-wwwww-wwwww-wwwww" /> |
| 37 | + <TextBlock x:Name="lblResult" |
| 38 | + Grid.Row="2" |
| 39 | + HorizontalAlignment="Center" |
| 40 | + VerticalAlignment="Center" |
| 41 | + FontSize="14" /> |
| 42 | + <ProgressBar x:Name="pdgActivationProgress" |
| 43 | + Grid.Row="3" |
| 44 | + Margin="0,0,0,2.5" |
| 45 | + IsIndeterminate="True" |
| 46 | + Visibility="Collapsed" /> |
| 47 | + <Button x:Name="btnActivite" |
| 48 | + Grid.Row="4" |
| 49 | + Margin="15,15,15,15" |
| 50 | + Click="btnActivite_Click" |
| 51 | + Content="Activate this License Key" /> |
27 | 52 | </Grid>
|
28 | 53 | </UserControl>
|
0 commit comments