mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +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]
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<controls:WindowEx 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:cp="clr-namespace:ThemeEditor.Controls.ColorPicker;assembly=ThemeEditor.Controls.ColorPicker"
|
|
xmlns:controls="clr-namespace:UVtools.WPF.Controls"
|
|
mc:Ignorable="d" d:DesignWidth="420" d:DesignHeight="420"
|
|
WindowStartupLocation="CenterOwner"
|
|
Width="420"
|
|
SizeToContent="Height"
|
|
CanResize="False"
|
|
x:Class="UVtools.WPF.Windows.ColorPickerWindow"
|
|
Title="Color Picker"
|
|
Icon="/Assets/Icons/UVtools.ico"
|
|
>
|
|
<StackPanel Orientation="Vertical">
|
|
<cp:ColorPicker Color="{Binding ResultColor, Mode=TwoWay}" />
|
|
|
|
<Border Classes="FooterActions">
|
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal" Spacing="10">
|
|
<controls:ButtonWithIcon HorizontalAlignment="Right" Name="Actions.Save" Padding="10" IsDefault="True"
|
|
Icon="fa-solid fa-check"
|
|
Text="Select"
|
|
Command="{Binding OnClickOk}">
|
|
<StackPanel Orientation="Horizontal"/>
|
|
</controls:ButtonWithIcon>
|
|
|
|
<controls:ButtonWithIcon HorizontalAlignment="Right"
|
|
Name="Actions.Cancel" Padding="10" IsCancel="True"
|
|
Icon="fa-solid fa-sign-out-alt"
|
|
Text="Cancel"
|
|
Command="{Binding Close}"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
</StackPanel>
|
|
|
|
</controls:WindowEx>
|