Files
UVtools/UVtools.WPF/Controls/Tools/ToolDynamicLayerHeightControl.axaml
Tiago Conceição e727a097b3 v3.8.1
- **Tools:**
  - **PCB Exposure:**
    - (Add) Allow to scale the drawing sizes per gerber file
    - (Add) Allow to invert the drawing polarity per gerber file (#592)
    - (Add) Allow to drag and drop files into "Add files" button and grid header
    - (Improvement) Do not add empty layers when usable to draw or when draw a all black image
    - (Improvement) "Merge all gerbers into one layer" will now draw all gerber into one image instead of perform the Max(of all gerbers pixels), allowing to subtract areas as they are on gerbers
  - **Import layers:** Fix error when trying to insert layers
  - **Export layers images:** Better compression of contours for SVG export, resulting in smooth curves, better visuals and lower file size
- (Add) Outline: Triangulate
- (Remove) Avalonia.Diagnostics dependency in release mode
2022-11-02 23:39:21 +00:00

227 lines
11 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.ToolDynamicLayerHeightControl">
<StackPanel Spacing="10">
<Grid RowDefinitions="Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto"
ColumnDefinitions="Auto,10,Auto,20,Auto,10,Auto">
<TextBlock Grid.Row="0" Grid.Column="0"
VerticalAlignment="Center"
ToolTip.Tip="This operation needs to run sequentially, to boost speed up, a group of layers will be cached (decoded and transformed in parallel to latter use).
&#x0a;The more layers you can cache the faster it will run but more RAM is used.
&#x0a;As a rule of thumb, never use less layers than CPU core count x 2 and allow some free margin or SWAP will be used and slow down the operation.
&#x0a;When allocate more layers than the required, that memory will not be used and kept free."
Text="Cache RAM:"/>
<NumericUpDown Grid.Row="0" Grid.Column="2"
Classes="ValueLabel ValueLabel_GB"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="0.5"
Maximum="128"
Increment="0.5"
FormatString="F2"
Value="{Binding Operation.CacheRAMSize}"/>
<TextBlock Grid.Row="0" Grid.Column="4"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Text="Cache layers:"/>
<TextBlock Grid.Row="0" Grid.Column="6"
VerticalAlignment="Center"
Text="{Binding Operation.CacheObjectCount, StringFormat=±{0}}"/>
<TextBlock Grid.Row="2" Grid.Column="0"
VerticalAlignment="Center"
ToolTip.Tip="Never use less than this minimum layer height, layers will always stack at least to this height."
Text="Minimum layer height:"/>
<NumericUpDown Grid.Row="2" Grid.Column="2"
Classes="ValueLabel ValueLabel_mm"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="{Binding SlicerFile.LayerHeight}"
Maximum="{Binding Operation.MaximumLayerHeight}"
Increment="0.01"
FormatString="F3"
Value="{Binding Operation.MinimumLayerHeight}"/>
<TextBlock Grid.Row="2" Grid.Column="4"
VerticalAlignment="Center"
ToolTip.Tip="Allow to stack layers up to a maximum of this height"
Text="Maximum layer height:"/>
<NumericUpDown Grid.Row="2" Grid.Column="6"
Classes="ValueLabel ValueLabel_mm"
Name="MaximumLayerHeight"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="{Binding MinimumLayerHeight}"
Maximum="{Binding MaximumLayerHeight}"
Increment="0.01"
FormatString="F3"
Value="{Binding Operation.MaximumLayerHeight}"/>
<CheckBox Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="3"
VerticalAlignment="Center"
ToolTip.Tip="Use this option if you get flashy layers or if you want to enhancement the results."
Content="Strip anti-aliasing"
IsChecked="{Binding Operation.StripAntiAliasing}"/>
<CheckBox Grid.Row="4" Grid.Column="4" Grid.ColumnSpan="3"
VerticalAlignment="Center"
ToolTip.Tip="Use this option with 'Strip anti-aliasing' to reconstruct the layer anti-aliasing via an gaussian blur."
Content="Reconstruct anti-aliasing"
IsEnabled="{Binding Operation.StripAntiAliasing}"
IsChecked="{Binding Operation.ReconstructAntiAliasing}"/>
<TextBlock Grid.Row="6" Grid.Column="0"
VerticalAlignment="Center"
ToolTip.Tip="The maximum number of pixels wide difference to be able to stack layers, where one pixel difference is a whole perimeter of the object to be eroded.
&#x0a;0 = Stack only equal layers.
&#x0a;n = Stack equal layers or with a n perimeter of difference between the sum of the stack."
Text="Maximum wide difference:"/>
<NumericUpDown Grid.Row="6" Grid.Column="2"
Classes="ValueLabel ValueLabel_px"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="0"
Maximum="30"
Increment="1"
Value="{Binding Operation.MaximumErodes}"/>
<TextBlock Grid.Row="8" Grid.Column="0"
VerticalAlignment="Center"
ToolTip.Tip="Linear: Current exposure + number of stacked layers * step.&#x0a;
Multiplier: Current exposure * layer height * number of stacked layers * step.&#x0a;
Manual: User defined exposure per layer height"
Text="Exposure set type:"/>
<ComboBox Grid.Row="8" Grid.Column="2"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Items="{Binding Operation.ExposureSetTypeItems}"
SelectedItem="{Binding Operation.ExposureSetType}"/>
<ToggleSwitch Grid.Row="8" Grid.Column="4" Grid.ColumnSpan="3"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
OffContent="Set the same base time for all bottoms"
OnContent="Calculate and iterate bottom exposures"
IsChecked="{Binding Operation.IterateBottomExposureTime}"/>
<TextBlock Grid.Row="10" Grid.Column="0"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
Text="Bottom exposure:"/>
<NumericUpDown Grid.Row="10" Grid.Column="2"
Classes="ValueLabel ValueLabel_s"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Increment="0.5"
Minimum="0.1"
Maximum="200"
FormatString="F2"
Value="{Binding Operation.BottomExposureTime}"/>
<TextBlock Grid.Row="10" Grid.Column="4"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Right"
Text="Normal exposure:"/>
<NumericUpDown Grid.Row="10" Grid.Column="6"
Classes="ValueLabel ValueLabel_s"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Increment="0.5"
Minimum="0.1"
Maximum="200"
FormatString="F2"
Value="{Binding Operation.ExposureTime}"/>
<TextBlock Grid.Row="12" Grid.Column="0"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
ToolTip.Tip="Bottom exposure increment per layer height"
Text="Bottom exposure step:"/>
<NumericUpDown Grid.Row="12" Grid.Column="2"
Classes="ValueLabel ValueLabel_s"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="0.01"
Maximum="100"
Increment="0.01"
FormatString="F2"
Value="{Binding Operation.BottomExposureStep}"/>
<TextBlock Grid.Row="12" Grid.Column="4"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
HorizontalAlignment="Right"
VerticalAlignment="Center"
ToolTip.Tip="Exposure increment per layer height"
Text="Exposure step:"/>
<NumericUpDown Grid.Row="12" Grid.Column="6"
Classes="ValueLabel ValueLabel_s"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
Minimum="0.01"
Maximum="100"
Increment="0.01"
FormatString="F2"
Value="{Binding Operation.ExposureStep}"/>
<Button Grid.Row="14" Grid.Column="2" Grid.ColumnSpan="5"
IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
VerticalAlignment="Center"
HorizontalAlignment="Stretch"
HorizontalContentAlignment="Center"
Content="Copy automatic table data into manual table"
Command="{Binding Operation.CopyAutomaticTableToManual}"/>
</Grid>
<TextBlock Text="Exposure Table:"
HorizontalAlignment="Center"
FontWeight="Bold" />
<DataGrid
Name="ExposureTable"
CanUserReorderColumns="True"
CanUserResizeColumns="True"
CanUserSortColumns="True"
GridLinesVisibility="Horizontal"
IsReadOnly="False"
ClipboardCopyMode="IncludeHeader"
MinHeight="200"
Items="{Binding Operation.ExposureTable}">
<DataGrid.Columns>
<DataGridTextColumn Header="Layer height (mm)"
Binding="{Binding LayerHeight}"
IsReadOnly="True"
Width="Auto" />
<DataGridTextColumn Header="Bottom exposure (s)"
Binding="{Binding BottomExposure}"
Width="Auto" />
<DataGridTextColumn Header="Exposure (s)"
Binding="{Binding Exposure}"
Width="Auto" />
</DataGrid.Columns>
</DataGrid>
</StackPanel>
</UserControl>