Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.WPF/Windows/AboutWindow.axaml')
-rw-r--r--UVtools.WPF/Windows/AboutWindow.axaml12
1 files changed, 10 insertions, 2 deletions
diff --git a/UVtools.WPF/Windows/AboutWindow.axaml b/UVtools.WPF/Windows/AboutWindow.axaml
index 9d71d9c..654dae7 100644
--- a/UVtools.WPF/Windows/AboutWindow.axaml
+++ b/UVtools.WPF/Windows/AboutWindow.axaml
@@ -75,7 +75,7 @@
</StackPanel>
</Border>
<Grid
- RowDefinitions="Auto,10,Auto,10,Auto,10,Auto,10,*"
+ RowDefinitions="Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,*"
Margin="20"
>
@@ -83,7 +83,15 @@
<TextBlock Grid.Row="2" Text="{Binding Version}"/>
<TextBlock Grid.Row="4" Text="{Binding Copyright}"/>
<TextBlock Grid.Row="6" Text="{Binding Company}"/>
- <TextBox Grid.Row="8"
+ <Button Grid.Row="8" VerticalAlignment="Center"
+ Command="{Binding OpenLicense}">
+ <StackPanel Orientation="Horizontal" Spacing="10">
+ <Image Source="/Assets/Icons/balance-scale-16x16.png"></Image>
+ <TextBlock VerticalAlignment="Center" Text="{Binding License}"/>
+ </StackPanel>
+ </Button>
+
+ <TextBox Grid.Row="10"
IsReadOnly="True"
MaxHeight="550"
Text="{Binding Description}"/>