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

ToolPatternControl.axaml « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f3572255f5ffdeb087df2c007acd98d7ec50c693 (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
<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.ToolPatternControl">

  <StackPanel>
    <Grid
      Margin="0,0,0,15"
      RowDefinitions="Auto,10,Auto"
      ColumnDefinitions="Auto,10,150,20,Auto,10,150,5,Auto,10,Auto"
    >

      <!-- Cols -->
      <TextBlock Text="Columns:"
                 VerticalAlignment="Center"
                 HorizontalAlignment="Right"
                 ToolTip.Tip="Number of copies in X direction."/>
      <NumericUpDown
        Grid.Column="2"
        Grid.Row="0"
        Minimum="1"
        Maximum="{Binding Operation.MaxCols}"
        Value="{Binding Operation.Cols}"
        ToolTip.Tip="Number of copies in X direction."
      />
      <TextBlock Text="Spacing:"
                 Grid.Column="4"
                 Grid.Row="0"
                 VerticalAlignment="Center"
                 HorizontalAlignment="Right"
                 ToolTip.Tip="Spacing between copies in X direction."
               />
      <NumericUpDown
          Grid.Column="6"
          Grid.Row="0"
          Minimum="1"
          Maximum="65535"
          Value="{Binding Operation.ColSpacing}"
          ToolTip.Tip="Spacing between copies in X direction"
        />
      <Button
        Grid.Column="8"
        Grid.Row="0"
        Padding="10,5"
        ToolTip.Tip="Fill spacing given the current number of columns, object size and left over space."
        Command="{Binding Operation.FillColumnSpacing}"
      >
        <Image Source="/Assets/Icons/resize-16x16.png" />
      </Button>
      <TextBlock
        Grid.Column="10"
        Grid.Row="0"
        VerticalAlignment="Center"
        Text="{Binding Operation.InfoCols}"/>

      <!-- Rows -->
      <TextBlock Text="Rows:"
                 Grid.Row="2"
                 VerticalAlignment="Center"
                 HorizontalAlignment="Right"
                 ToolTip.Tip="Number of copies in Y direction."
               />
      <NumericUpDown
        Grid.Column="2"
        Grid.Row="2"
        Minimum="1"
        Maximum="{Binding Operation.MaxRows}"
        Value="{Binding Operation.Rows}"
        ToolTip.Tip="Number of copies in Y direction."
      />
      <TextBlock Text="Spacing:"
                 Grid.Column="4"
                 Grid.Row="2"
                 VerticalAlignment="Center"
                 HorizontalAlignment="Right"
                 ToolTip.Tip="Spacing between copies in Y direction."
               />
      <NumericUpDown
          Grid.Column="6"
          Grid.Row="2"
          Minimum="1"
          Maximum="65535"
          Value="{Binding Operation.RowSpacing}"
          ToolTip.Tip="Spacing between copies in Y direction"
        />
      <Button
        Grid.Column="8"
        Grid.Row="2"
        Padding="10,5"
        ToolTip.Tip="Fill spacing given the current number of rows, object size and left over space."
        Command="{Binding Operation.FillRowSpacing}"
      >
        <Image Source="/Assets/Icons/resize-16x16.png" />
      </Button>
      <TextBlock
        Grid.Column="10"
        Grid.Row="2"
        VerticalAlignment="Center"
        Text="{Binding Operation.InfoRows}"/>

    </Grid>

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

      <StackPanel Spacing="10">
        <TextBlock Text="{Binding Operation.InfoWidthStr}" />
        <TextBlock Text="{Binding Operation.InfoHeightStr}" />
        <TextBlock Text="{Binding Operation.InfoModelWithinBoundaryStr}" />
      </StackPanel>


      <Grid 
        Grid.Column="2"
        RowDefinitions="Auto,Auto,Auto"
              ColumnDefinitions="Auto,Auto,Auto,5,Auto"
              >

        <RadioButton
          Grid.Row="0" Grid.Column="0"
          ToolTip.Tip="Top Left"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="0"
            />
        <RadioButton
          Grid.Row="0" Grid.Column="1"
          ToolTip.Tip="Top Center"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="1"
            />
        <RadioButton
          Grid.Row="0" Grid.Column="2"
          ToolTip.Tip="Top Right"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="2"
            />

        <RadioButton
          Grid.Row="1" Grid.Column="0"
          ToolTip.Tip="Middle Left"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="3"
            />
        <RadioButton
          Grid.Row="1" Grid.Column="1"
          ToolTip.Tip="Middle Center"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          Margin="5"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="4"
            />
        <RadioButton
          Grid.Row="1" Grid.Column="2"
          ToolTip.Tip="Middle Right"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="5"
            />

        <RadioButton
          Grid.Row="2" Grid.Column="0"
          ToolTip.Tip="Bottom Left"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="6"
            />
        <RadioButton
          Grid.Row="2" Grid.Column="1"
          ToolTip.Tip="Bottom Center"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="7"
            />
        <RadioButton
          Grid.Row="2" Grid.Column="2"
          ToolTip.Tip="Bottom Right"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="8"
            />
        <RadioButton
          Grid.Row="1" Grid.Column="4"
          ToolTip.Tip="Computed center"
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          GroupName="Anchor"
          IsChecked="{Binding IsDefaultAnchorChecked}"
          Command="{Binding Operation.SetAnchor}"
          CommandParameter="9"
          Content="Computed center"
          />
      </Grid>
     
    </Grid>   
    
  </StackPanel>
</UserControl>