mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 19:42:32 +02:00
d90f7e6f75
- (Add) Layer preview - Outline: Skeletonize - (Add) Actions - Export layers to skeleton: Export a layer range to a skeletonized image that is the sum of each layer skeleton - (Add) Pixel editor - Text: Allow to rotate text placement by any angle (#206) - (Add) Calibrate - XYZ Accuracy: Drain hole diameter (#205)
31 lines
1.2 KiB
XML
31 lines
1.2 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.ToolLayerExportSkeletonControl">
|
|
<StackPanel Spacing="10">
|
|
|
|
<StackPanel Orientation="Horizontal" Spacing="5">
|
|
<TextBox
|
|
Watermark="Output filepath"
|
|
UseFloatingWatermark="True"
|
|
VerticalAlignment="Center"
|
|
IsReadOnly="True"
|
|
Width="500"
|
|
Text="{Binding Operation.FilePath}"/>
|
|
<Button
|
|
VerticalAlignment="Stretch"
|
|
Command="{Binding ChooseFilePath}">
|
|
<Image Source="/Assets/Icons/open-16x16.png"/>
|
|
</Button>
|
|
</StackPanel>
|
|
|
|
<CheckBox
|
|
Content="Crop image by selected ROI"
|
|
IsVisible="{Binding ParentWindow.IsROIVisible}"
|
|
IsChecked="{Binding Operation.CropByROI}"/>
|
|
|
|
</StackPanel>
|
|
</UserControl>
|