Files
UVtools/UVtools.WPF/Controls/Tools/ToolLayerExportSkeletonControl.axaml
T
Tiago Conceição d90f7e6f75 v2.13.1
- (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)
2021-05-29 04:14:03 +01:00

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>