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

ToolMoveControl.axaml « Tools « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9e39532a476cbc68d932f7d869d356c982f30da (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
<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="550" d:DesignHeight="250"
             x:Class="UVtools.WPF.Controls.Tools.ToolMoveControl">
  
  <Grid RowDefinitions="Auto" ColumnDefinitions="Auto,10,Auto">
    <StackPanel Grid.Row="0" Grid.Column="0" 
                VerticalAlignment="Center"
                Orientation="Vertical"
                Spacing="5">
      <TextBlock Text="{Binding Operation.LocationXStr}"/>
      <TextBlock Text="{Binding Operation.LocationYStr}"/>

      <TextBlock Text="{Binding Operation.LocationWidthStr}"/>
      <TextBlock Text="{Binding Operation.LocationHeightStr}"/>

      <TextBlock Margin="0,10,0,0" Text="{Binding Operation.IsWithinBoundaryStr}"/>

      <CheckBox 
        Margin="0,5,0,0"
        Content="Do a cut move" 
        ToolTip.Tip="When selected, the object will be cutted and pasted on the new location.
&#x0a;Otherwise a copy will be performed to the new location."
        IsChecked="{Binding Operation.IsCutMove}" />

    </StackPanel>

    <StackPanel Grid.Row="0" Grid.Column="2"
                VerticalAlignment="Center"
                  Orientation="Horizontal"
                  Spacing="5">
      <TextBlock 
        VerticalAlignment="Center" 
        FontWeight="Bold"
        Text="Left"/>
      <NumericUpDown 
            VerticalAlignment="Center"
            ButtonSpinnerLocation="Left"
            Width="80"
            Value="{Binding Operation.MarginLeft}"
          />

      <StackPanel>
        <TextBlock 
          VerticalAlignment="Center" 
          HorizontalAlignment="Center"
          FontWeight="Bold"
          Margin="0,0,0,5"
          Text="Top"/>
        <NumericUpDown
            VerticalAlignment="Center"
            Width="80"
            Value="{Binding Operation.MarginTop}"
          />

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

          <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"
            IsChecked="{Binding IsMiddleCenterChecked}"
            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"
            />
          
          
        </Grid>

        <NumericUpDown
            VerticalAlignment="Center"
            Width="80"
            Value="{Binding Operation.MarginBottom}"
          />
        <TextBlock
          VerticalAlignment="Center"
          HorizontalAlignment="Center"
          FontWeight="Bold"
          Margin="0,5,0,0"
          Text="Bottom"/>
        
      </StackPanel>

      <NumericUpDown
           VerticalAlignment="Center"
           Width="80"
           Value="{Binding Operation.MarginRight}"
          />
      <TextBlock
        VerticalAlignment="Center"
        HorizontalAlignment="Center"
        FontWeight="Bold"
        Text="Right"
        />
      
    </StackPanel>
    
  </Grid>
</UserControl>