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

ToolDynamicLayerHeightControl.axaml « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60e7f9ebe53b16509d968f930c248cad02e86f64 (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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
<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.ToolDynamicLayerHeightControl">

    <StackPanel Spacing="10">

      <Grid RowDefinitions="Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto,10,Auto"
            ColumnDefinitions="Auto,10,Auto,20,Auto,10,Auto">

          <TextBlock Grid.Row="0" Grid.Column="0"
                     VerticalAlignment="Center"
                     ToolTip.Tip="This operation needs to run sequentially, to boost speed up, a group of layers will be cached (decoded and transformed in parallel to latter use).
&#x0a;The more layers you can cache the faster it will run but more RAM is used.
&#x0a;As a rule of thumb, never use less layers than CPU core count x 2 and allow some free margin or SWAP will be used and slow down the operation.
&#x0a;When allocate more layers than the required, that memory will not be used and kept free."
                     Text="Cache RAM:"/>

          <NumericUpDown Grid.Row="0" Grid.Column="2"
                         Classes="ValueLabel ValueLabel_GB"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Minimum="0.5"
                         Maximum="128"
                         Increment="0.5"
                         FormatString="F2"
                         Value="{Binding Operation.CacheRAMSize}"/>

          <TextBlock Grid.Row="0" Grid.Column="4"
                     HorizontalAlignment="Right"
                     VerticalAlignment="Center"
                     Text="Cache layers:"/>

          <TextBlock Grid.Row="0" Grid.Column="6"
                     VerticalAlignment="Center"
                     Text="{Binding Operation.CacheObjectCount, StringFormat=±{0}}"/>

          <TextBlock Grid.Row="2" Grid.Column="0"
                     VerticalAlignment="Center"
                     ToolTip.Tip="Never use less than this minimum layer height, layers will always stack at least to this height."
                     Text="Minimum layer height:"/>

          <NumericUpDown Grid.Row="2" Grid.Column="2"
                         Classes="ValueLabel ValueLabel_mm"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Minimum="{Binding SlicerFile.LayerHeight}"
                         Maximum="{Binding Operation.MaximumLayerHeight}"
                         Increment="0.01"
                         FormatString="F3"
                         Value="{Binding Operation.MinimumLayerHeight}"/>

          <TextBlock Grid.Row="2" Grid.Column="4"
                     VerticalAlignment="Center"
                     ToolTip.Tip="Allow to stack layers up to a maximum of this height"
                     Text="Maximum layer height:"/>

            <NumericUpDown Grid.Row="2" Grid.Column="6"
                           Classes="ValueLabel ValueLabel_mm"
                           Name="MaximumLayerHeight"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Minimum="{Binding MinimumLayerHeight}"
                         Maximum="{Binding MaximumLayerHeight}"
                         Increment="0.01"
                         FormatString="F3"
                         Value="{Binding Operation.MaximumLayerHeight}"/>

          <CheckBox Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="3"
                     VerticalAlignment="Center"
                     ToolTip.Tip="Use this option if you get flashy layers or if you want to enhancement the results."
                     Content="Strip anti-aliasing"
                     IsChecked="{Binding Operation.StripAntiAliasing}"/>

          <CheckBox Grid.Row="4" Grid.Column="4"  Grid.ColumnSpan="3"
                    VerticalAlignment="Center"
                    ToolTip.Tip="Use this option with 'Strip anti-aliasing' to reconstruct the layer anti-aliasing via an gaussian blur."
                    Content="Reconstruct anti-aliasing"
                    IsEnabled="{Binding Operation.StripAntiAliasing}"
                    IsChecked="{Binding Operation.ReconstructAntiAliasing}"/>

          <TextBlock Grid.Row="6" Grid.Column="0"
                     VerticalAlignment="Center"
                     ToolTip.Tip="The maximum number of pixels wide difference to be able to stack layers, where one pixel difference is a whole perimeter of the object to be eroded.
&#x0a;0 = Stack only equal layers.
&#x0a;n = Stack equal layers or with a n perimeter of difference between the sum of the stack."
                     Text="Maximum wide difference:"/>
          <NumericUpDown Grid.Row="6" Grid.Column="2"
                         Classes="ValueLabel ValueLabel_px"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Minimum="0"
                         Maximum="30"
                         Increment="1"
                         Value="{Binding Operation.MaximumErodes}"/>

            <TextBlock Grid.Row="8" Grid.Column="0"
                       VerticalAlignment="Center"
                       ToolTip.Tip="Linear: Current exposure + number of stacked layers * step.&#x0a;
Multiplier: Current exposure * layer height * number of stacked layers * step.&#x0a;
Manual: User defined exposure per layer height"
                       Text="Exposure set type:"/>

            <ComboBox Grid.Row="8" Grid.Column="2"
                      VerticalAlignment="Center"
                      HorizontalAlignment="Stretch"
                      Items="{Binding Operation.ExposureSetTypeItems}"
                      SelectedItem="{Binding Operation.ExposureSetType}"/>

          <ToggleSwitch Grid.Row="8" Grid.Column="4" Grid.ColumnSpan="3"
                        IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                        OffContent="Set the same base time for all bottoms"
                        OnContent="Calculate and iterate bottom exposures"
                        IsChecked="{Binding Operation.IterateBottomExposureTime}"/>

          <TextBlock Grid.Row="10" Grid.Column="0"
                     IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                     VerticalAlignment="Center"
                     Text="Bottom exposure:"/>

          <NumericUpDown Grid.Row="10" Grid.Column="2"
                         Classes="ValueLabel ValueLabel_s"
                         IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Increment="0.5"
                         Minimum="0.1"
                         Maximum="200"
                         FormatString="F2"
                         Value="{Binding Operation.BottomExposureTime}"/>

          <TextBlock Grid.Row="10" Grid.Column="4"
                     IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                     VerticalAlignment="Center"
                     HorizontalAlignment="Right"
                     Text="Normal exposure:"/>

          <NumericUpDown Grid.Row="10" Grid.Column="6"
                         Classes="ValueLabel ValueLabel_s"
                         IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                         VerticalAlignment="Center"
                         HorizontalAlignment="Stretch"
                         Increment="0.5"
                         Minimum="0.1"
                         Maximum="200"
                         FormatString="F2"
                         Value="{Binding Operation.ExposureTime}"/>

            <TextBlock Grid.Row="12" Grid.Column="0"
                       IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                       VerticalAlignment="Center"
                       ToolTip.Tip="Bottom exposure increment per layer height"
                       Text="Bottom exposure step:"/>

            <NumericUpDown Grid.Row="12" Grid.Column="2"
                           Classes="ValueLabel ValueLabel_s"
                           IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                           VerticalAlignment="Center"
                           HorizontalAlignment="Stretch"
                           Minimum="0.01"
                           Maximum="100"
                           Increment="0.01"
                           FormatString="F2"
                           Value="{Binding Operation.BottomExposureStep}"/>

            <TextBlock Grid.Row="12" Grid.Column="4"
                       IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                       HorizontalAlignment="Right"
                       VerticalAlignment="Center"
                       ToolTip.Tip="Exposure increment per layer height"
                       Text="Exposure step:"/>

            <NumericUpDown Grid.Row="12" Grid.Column="6"
                           Classes="ValueLabel ValueLabel_s"
                           IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                           VerticalAlignment="Center"
                           HorizontalAlignment="Stretch"
                           Minimum="0.01"
                           Maximum="100"
                           Increment="0.01"
                           FormatString="F2"
                           Value="{Binding Operation.ExposureStep}"/>

          <Button Grid.Row="14" Grid.Column="2" Grid.ColumnSpan="5"
                     IsVisible="{Binding !Operation.IsExposureSetTypeManual}"
                     VerticalAlignment="Center"
                     HorizontalAlignment="Stretch"
                     HorizontalContentAlignment="Center"
                     Content="Copy automatic table data into manual table"
                     Command="{Binding Operation.CopyAutomaticTableToManual}"/>

      </Grid>

        <TextBlock Text="Exposure Table:" 
                   HorizontalAlignment="Center"
                   FontWeight="Bold" />

      <DataGrid
          Name="ExposureTable"
          CanUserReorderColumns="True"
          CanUserResizeColumns="True"
          CanUserSortColumns="True"
          GridLinesVisibility="Horizontal"
          IsReadOnly="False"
          ClipboardCopyMode="IncludeHeader"
          MinHeight="200"
          Items="{Binding Operation.ExposureTable}">
          <DataGrid.Columns>
              <DataGridTextColumn Header="Layer height (mm)"
                                  Binding="{Binding LayerHeight}"
                                  IsReadOnly="True"
                                  Width="Auto" />
              <DataGridTextColumn Header="Bottom exposure (s)"
                                  Binding="{Binding BottomExposure}"
                                  Width="Auto" />
              <DataGridTextColumn Header="Exposure (s)"
                                  Binding="{Binding Exposure}"
                                  Width="Auto" />
          </DataGrid.Columns>

      </DataGrid>

    </StackPanel>
</UserControl>