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

ToolInfillControl.axaml « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e354950a965990949508b0c43fc2273aaec1388 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<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="400" d:DesignHeight="300"
             x:Class="UVtools.WPF.Controls.Tools.ToolInfillControl">
  <Grid
    RowDefinitions="Auto,10,Auto,10,Auto,10,Auto,10,Auto"
    ColumnDefinitions="Auto,10,200,5,Auto"
    >

    <!--Pattern-->
    <TextBlock
      VerticalAlignment="Center"
      Text="Pattern:"
      />

    <ComboBox 
      Grid.Column="2"
      Items="{Binding Operation.InfillAlgorithmTypes}"
      SelectedItem="{Binding Operation.InfillType}"
      HorizontalAlignment="Stretch"
      />

    <!--Wall thickness-->
    <TextBlock
      Grid.Row="2"
      Grid.Column="0"
      VerticalAlignment="Center"
      Text="Wall thickness:"
      />

    <NumericUpDown
      Grid.Row="2"
      Grid.Column="2"
      Minimum="0"
      Maximum="65535"
      Increment="1"
      
      Value="{Binding Operation.WallThickness}"
      />

    <TextBlock
      Grid.Row="2"
      Grid.Column="4"
      VerticalAlignment="Center"
      Text="px"
      />

    <!--Infill brightness-->
    <TextBlock
      Grid.Row="4"
      Grid.Column="0"
      VerticalAlignment="Center"
      Text="Infill brightness:"
      />

    <NumericUpDown
      Grid.Row="4"
      Grid.Column="2"
      Minimum="0"
      Maximum="255"
      Increment="1"
      
      Value="{Binding Operation.InfillBrightness}"
      />

    <!--Infill thickness-->
    <TextBlock
      Grid.Row="6"
      Grid.Column="0"
      VerticalAlignment="Center"
      Text="Infill thickness:"
      />

    <NumericUpDown
      Grid.Row="6"
      Grid.Column="2"
      Name="InfillThickness"
      Minimum="0"
      Maximum="65535"
      Increment="1"
      
      Value="{Binding Operation.InfillThickness}"
      />

    <TextBlock
      Grid.Row="6"
      Grid.Column="4"
      VerticalAlignment="Center"
      Text="px"
      />

    <!--Infill spacing-->
    <TextBlock
      Grid.Row="8"
      Grid.Column="0"
      VerticalAlignment="Center"
      Text="Infill spacing:"
      />

    <NumericUpDown
      Grid.Row="8"
      Grid.Column="2"
      Minimum="{Binding #InfillThickness.Value}"
      Maximum="65535"
      Increment="1"
      
      Value="{Binding Operation.InfillSpacing}"
      />

    <TextBlock
      Grid.Row="8"
      Grid.Column="4"
      VerticalAlignment="Center"
      Text="px"
      />
    
  </Grid>
</UserControl>