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.axaml20
1 files changed, 17 insertions, 3 deletions
diff --git a/UVtools.WPF/Windows/AboutWindow.axaml b/UVtools.WPF/Windows/AboutWindow.axaml
index 654dae7..d9cc68b 100644
--- a/UVtools.WPF/Windows/AboutWindow.axaml
+++ b/UVtools.WPF/Windows/AboutWindow.axaml
@@ -44,11 +44,19 @@
UseFloatingWatermark="True"/>
<TextBox
+ Text="{Binding AvaloniaUIDescription}"
+ IsReadOnly="True"
+ BorderBrush="Transparent"
+ CaretBrush="Transparent"
+ Watermark="AvaloniaUI:"
+ UseFloatingWatermark="True"/>
+
+ <TextBox
Text="{Binding OpenCVDescription}"
IsReadOnly="True"
BorderBrush="Transparent"
CaretBrush="Transparent"
- Watermark="OpenCV Version:"
+ Watermark="OpenCV:"
UseFloatingWatermark="True"/>
<TextBox
@@ -71,7 +79,13 @@
Margin="0,20,0,0"
HorizontalAlignment="Stretch"
Content="Copy OpenCV build information to clipboard"
- Command="{Binding SetOpenCVInformationToClipboard}" />
+ Command="{Binding CopyOpenCVInformationToClipboard}" />
+
+ <Button
+ Margin="0,10,0,0"
+ HorizontalAlignment="Stretch"
+ Content="Copy loaded assemblies to clipboard"
+ Command="{Binding CopyLoadedAssembliesToClipboard}" />
</StackPanel>
</Border>
<Grid
@@ -93,7 +107,7 @@
<TextBox Grid.Row="10"
IsReadOnly="True"
- MaxHeight="550"
+ MaxHeight="560"
Text="{Binding Description}"/>
</Grid>
</StackPanel>