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:
authorTiago Conceição <Tiago_caza@hotmail.com>2021-01-03 03:47:20 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-01-03 03:47:20 +0300
commita7d15a24d0179b06b64daf1be5f4e08c488cb930 (patch)
treeb3823c82f6031da7a6c10571945973a88390778a /UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml
parent92588fd1592236d5fef67391e55cf05b6111ed9b (diff)
v2.1.1v2.1.1
* (Add) About box: Primary screen identifier and open on screen identifier * (Add) Calibrator - External tests * (Change) Rewrite 'Action - Import Layer(s)' to support file formats and add the followig importation types: * **Insert:** Insert layers. (Requires images with bounds equal or less than file resolution) * **Replace:** Replace layers. (Requires images with bounds equal or less than file resolution) * **Stack:** Stack layers content. (Requires images with bounds equal or less than file resolution) * **Merge:** Merge/Sum layers content. (Requires images with same resolution) * **Subtract:** Subtract layers content. (Requires images with same resolution) * **BitwiseAnd:** Perform a 'bitwise and' operation over layer pixels. (Requires images with same resolution) * **BitwiseOr:** Perform a 'bitwise or' operation over layer pixels. (Requires images with same resolution) * **BitwiseXOr:** Perform a 'bitwise xor' operation over layer pixels. (Requires images with same resolution) * (Change) Icon for Tool - Raft Relief * (Change) Windows and dialogs max size are now calculated to where window is opened instead of use the primary or first screen all the time
Diffstat (limited to 'UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml')
-rw-r--r--UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml35
1 files changed, 35 insertions, 0 deletions
diff --git a/UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml b/UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml
new file mode 100644
index 0000000..0b8421f
--- /dev/null
+++ b/UVtools.WPF/Controls/Calibrators/CalibrateExternalTestsControl.axaml
@@ -0,0 +1,35 @@
+<UserControl xmlns="https://github.com/avaloniaui"
+ 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"
+ mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
+ x:Class="UVtools.WPF.Controls.Calibrators.CalibrateExternalTestsControl">
+ <Grid
+ RowDefinitions="Auto,Auto,Auto"
+ ColumnDefinitions="400">
+
+ <Button Grid.Row="0"
+ Padding="5"
+ Content="Photonsters Validation Matrix / Exposure finder"
+ Command="{Binding ButtonClicked}"
+ VerticalAlignment="Center"
+ CommandParameter="https://www.thingiverse.com/thing:4707289"/>
+
+ <Button Grid.Row="1"
+ Margin="0,5,0,0"
+ Padding="5"
+ Content="Support pull test"
+ Command="{Binding ButtonClicked}"
+ VerticalAlignment="Center"
+ CommandParameter="https://www.thingiverse.com/thing:4308175"/>
+
+ <Button Grid.Row="2"
+ Margin="0,5,0,0"
+ Padding="5"
+ Content="AmeraLabs town calibration part"
+ Command="{Binding ButtonClicked}"
+ VerticalAlignment="Center"
+ CommandParameter="https://www.thingiverse.com/thing:2810666"/>
+
+ </Grid>
+</UserControl>