mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 10:02:32 +02:00
15c500ecaf
- **PCB Exposure:** - (Add) Able to select multiple files and create a layer per file or merge them into one layer - (Add) Able to import files from a zip file - (Improvement) Round pixel coordinates and line thickness - (Improvement) Better position precision for primitives - (Improvement) Disable the ok button if no files were selected - (Change) Do not auto mirror based on printer lcd mirror type - (Fix) Limit line thickness to 1px minimum - (Fix) Allow leading zero omit from XY coordinates (#492) - (Fix) Mirror option was shifting the board position - (Add) Calibrate - Blooming effect: Generates test models with various strategies and increments to measure the blooming effect - (Add) Setting: Issues - Default order by, changes the default order on the issues list (#482) - (Improvement) CTBv4 and encrypted: Fetch `BottomWaitTimes` virtual property from first bottom layer that has at least 2 pixels (#483) - (Fix) Linux: Enable desktop integration for AppImages (#490) - (Fix) Extracting zip contents inside folders would cause a error and not extract those contents - (Upgrade) AvaloniaUI from 0.10.14 to 0.10.15 [Fixes auto-size problems]
215 lines
7.0 KiB
XML
215 lines
7.0 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"
|
|
xmlns:i="clr-namespace:Projektanker.Icons.Avalonia;assembly=Projektanker.Icons.Avalonia"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="UVtools.WPF.Controls.Tools.ToolPatternControl">
|
|
|
|
<StackPanel>
|
|
<Grid
|
|
Margin="0,0,0,15"
|
|
RowDefinitions="Auto,10,Auto"
|
|
ColumnDefinitions="Auto,10,150,20,Auto,10,150,5,Auto,10,Auto"
|
|
>
|
|
|
|
<!-- Cols -->
|
|
<TextBlock Text="Columns:"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
ToolTip.Tip="Number of copies in X direction."/>
|
|
<NumericUpDown
|
|
Grid.Column="2"
|
|
Grid.Row="0"
|
|
Minimum="1"
|
|
Maximum="{Binding Operation.MaxCols}"
|
|
Value="{Binding Operation.Cols}"
|
|
ToolTip.Tip="Number of copies in X direction."
|
|
/>
|
|
<TextBlock Text="Spacing:"
|
|
Grid.Column="4"
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
ToolTip.Tip="Spacing between copies in X direction."
|
|
/>
|
|
<NumericUpDown
|
|
Grid.Column="6"
|
|
Grid.Row="0"
|
|
Minimum="1"
|
|
Maximum="65535"
|
|
Value="{Binding Operation.ColSpacing}"
|
|
ToolTip.Tip="Spacing between copies in X direction"
|
|
/>
|
|
<Button
|
|
Grid.Column="8"
|
|
Grid.Row="0"
|
|
Padding="10,5"
|
|
ToolTip.Tip="Fill spacing given the current number of columns, object size and left over space."
|
|
Command="{Binding Operation.FillColumnSpacing}"
|
|
i:Attached.Icon="fa-solid fa-expand-alt"/>
|
|
<TextBlock
|
|
Grid.Column="10"
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding Operation.InfoCols}"/>
|
|
|
|
<!-- Rows -->
|
|
<TextBlock Text="Rows:"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
ToolTip.Tip="Number of copies in Y direction."/>
|
|
<NumericUpDown
|
|
Grid.Column="2"
|
|
Grid.Row="2"
|
|
Minimum="1"
|
|
Maximum="{Binding Operation.MaxRows}"
|
|
Value="{Binding Operation.Rows}"
|
|
ToolTip.Tip="Number of copies in Y direction."/>
|
|
<TextBlock Text="Spacing:"
|
|
Grid.Column="4"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Right"
|
|
ToolTip.Tip="Spacing between copies in Y direction."/>
|
|
<NumericUpDown
|
|
Grid.Column="6"
|
|
Grid.Row="2"
|
|
Minimum="1"
|
|
Maximum="65535"
|
|
Value="{Binding Operation.RowSpacing}"
|
|
ToolTip.Tip="Spacing between copies in Y direction"/>
|
|
<Button
|
|
Grid.Column="8"
|
|
Grid.Row="2"
|
|
Padding="10,5"
|
|
ToolTip.Tip="Fill spacing given the current number of rows, object size and left over space."
|
|
Command="{Binding Operation.FillRowSpacing}"
|
|
i:Attached.Icon="fa-solid fa-expand-alt"/>
|
|
<TextBlock
|
|
Grid.Column="10"
|
|
Grid.Row="2"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding Operation.InfoRows}"/>
|
|
|
|
</Grid>
|
|
|
|
<Grid RowDefinitions="Auto"
|
|
ColumnDefinitions="Auto,20,Auto">
|
|
|
|
<StackPanel Spacing="10">
|
|
<TextBlock Text="{Binding Operation.InfoWidthStr}" />
|
|
<TextBlock Text="{Binding Operation.InfoHeightStr}" />
|
|
<TextBlock Text="{Binding Operation.InfoModelWithinBoundaryStr}" />
|
|
</StackPanel>
|
|
|
|
|
|
<Grid
|
|
Grid.Column="2"
|
|
RowDefinitions="Auto,Auto,Auto"
|
|
ColumnDefinitions="Auto,Auto,Auto,5,Auto"
|
|
>
|
|
|
|
<RadioButton
|
|
Grid.Row="0" Grid.Column="0"
|
|
ToolTip.Tip="Top Left"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="0"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="0" Grid.Column="1"
|
|
ToolTip.Tip="Top Center"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="1"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="0" Grid.Column="2"
|
|
ToolTip.Tip="Top Right"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="2"
|
|
/>
|
|
|
|
<RadioButton
|
|
Grid.Row="1" Grid.Column="0"
|
|
ToolTip.Tip="Middle Left"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="3"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="1" Grid.Column="1"
|
|
ToolTip.Tip="Middle Center"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Margin="5"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="4"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="1" Grid.Column="2"
|
|
ToolTip.Tip="Middle Right"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="5"
|
|
/>
|
|
|
|
<RadioButton
|
|
Grid.Row="2" Grid.Column="0"
|
|
ToolTip.Tip="Bottom Left"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="6"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="2" Grid.Column="1"
|
|
ToolTip.Tip="Bottom Center"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="7"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="2" Grid.Column="2"
|
|
ToolTip.Tip="Bottom Right"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="8"
|
|
/>
|
|
<RadioButton
|
|
Grid.Row="1" Grid.Column="4"
|
|
ToolTip.Tip="Computed center"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
GroupName="Anchor"
|
|
IsChecked="{Binding IsDefaultAnchorChecked}"
|
|
Command="{Binding Operation.SetAnchor}"
|
|
CommandParameter="9"
|
|
Content="Computed center"
|
|
/>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</StackPanel>
|
|
</UserControl>
|