mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 03:22:32 +02:00
e9ffb17e36
* (Add) Edit print paramenters: Option to enable or disable the 'Propagate modifications to layers' when working with global parameters * **(Fix) Change resolution:** * It was placing the object on random layers on the wrong position, shifting the object * Add informaton on the too description to warn about diferent pixel pitch for target printer * Add current pixel pitch in microns if available * (Fix) Exposure time finder: Multiple exposures was getting bottom and normal time from base file instead of commum properties fields
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<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.Tools.ToolChangeResolutionControl">
|
|
<StackPanel Orientation="Vertical" Spacing="10">
|
|
<TextBlock Text="{Binding Operation.SlicerFile.Resolution, StringFormat=Current resolution (X/Y): {0}}"/>
|
|
<TextBlock Text="{Binding Operation.SlicerFile.PixelSizeMicrons, StringFormat=Current pixel pitch (X/Y): {0}µm}"/>
|
|
<TextBlock Text="{Binding Operation.VolumeBondsSize, StringFormat=Object volume (X/Y): {0}}"/>
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="10">
|
|
<TextBlock VerticalAlignment="Center" Text="New X/Y:"/>
|
|
<NumericUpDown
|
|
MinWidth="120"
|
|
Minimum="1"
|
|
Maximum="50000"
|
|
Width="150"
|
|
Value="{Binding Operation.NewResolutionX}"/>
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="x"/>
|
|
|
|
<NumericUpDown
|
|
MinWidth="120"
|
|
Minimum="1"
|
|
Maximum="50000"
|
|
Width="150"
|
|
Value="{Binding Operation.NewResolutionY}"
|
|
/>
|
|
|
|
<ComboBox
|
|
MinWidth="250"
|
|
SelectedItem="{Binding SelectedPresetItem}"
|
|
Items="{Binding Operation.Presets}"
|
|
PlaceholderText="Resolution presets"/>
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
</UserControl>
|