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/Controls/Tools/ToolChangeResolutionControl.axaml')
-rw-r--r--UVtools.WPF/Controls/Tools/ToolChangeResolutionControl.axaml9
1 files changed, 5 insertions, 4 deletions
diff --git a/UVtools.WPF/Controls/Tools/ToolChangeResolutionControl.axaml b/UVtools.WPF/Controls/Tools/ToolChangeResolutionControl.axaml
index 744358a..26797c0 100644
--- a/UVtools.WPF/Controls/Tools/ToolChangeResolutionControl.axaml
+++ b/UVtools.WPF/Controls/Tools/ToolChangeResolutionControl.axaml
@@ -4,8 +4,8 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="UVtools.WPF.Controls.Tools.ToolChangeResolutionControl">
- <StackPanel Orientation="Vertical" Spacing="15">
- <TextBlock Text="{Binding Operation.OldResolution, StringFormat=Current resolution (X/Y): \{0\}}"/>
+ <StackPanel Orientation="Vertical" Spacing="10">
+ <TextBlock Text="{Binding Operation.SlicerFile.Resolution, StringFormat=Current resolution (X/Y): \{0\}}"/>
<TextBlock Text="{Binding Operation.VolumeBondsSize, StringFormat=Object volume (X/Y): \{0\}}"/>
<StackPanel Orientation="Horizontal" Spacing="10">
@@ -14,8 +14,8 @@
MinWidth="100"
Minimum="1"
Maximum="50000"
- Value="{Binding Operation.NewResolutionX}"
- />
+ Width="150"
+ Value="{Binding Operation.NewResolutionX}"/>
<TextBlock VerticalAlignment="Center" Text="x"/>
@@ -23,6 +23,7 @@
MinWidth="100"
Minimum="1"
Maximum="50000"
+ Width="150"
Value="{Binding Operation.NewResolutionY}"
/>