Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ToolRaiseOnPrintFinishControl.axaml « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4218fedcbd19ba4a21a2fa9c1c00c9609f9bfd86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<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"
             MinWidth="600"
             x:Class="UVtools.WPF.Controls.Tools.ToolRaiseOnPrintFinishControl">

  <Grid RowDefinitions="Auto"
        ColumnDefinitions="Auto,10,200,20,Auto">
    <TextBlock Grid.Row="0" Grid.Column="0"
               VerticalAlignment="Center"
               Text="Raise to:"/>

    <NumericUpDown Grid.Row="0" Grid.Column="2"
                   Classes="ValueLabel ValueLabel_mm"
               VerticalAlignment="Center"
               Increment="1"
                Minimum="{Binding Operation.MinimumPositionZ}"
                Maximum="1000"
                FormatString="F2"
                Value="{Binding Operation.PositionZ}"/>


    <CheckBox Grid.Row="0" Grid.Column="4" 
               VerticalAlignment="Center"
               ToolTip.Tip="If enabled, output a dummy pixel inside the layer bound to prevent a empty image and to ensure the correct handle by the firmware. This will also prevent layer being removed by auto-fix issues (Empty Layers)."
               Content="Output a dummy pixel"
              IsChecked="{Binding Operation.OutputDummyPixel}"/>
  </Grid>
  
</UserControl>