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

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

  <StackPanel Spacing="10">
    <Grid RowDefinitions="Auto,10,Auto,10,Auto,10,Auto"
          ColumnDefinitions="Auto,10,Auto,20,Auto,10,Auto,20,Auto,10,Auto">
        
        <TextBlock Grid.Row="0" Grid.Column="0"
                   VerticalAlignment="Center"
                   Text="Operator:"/>

        <ComboBox Grid.Row="0" Grid.Column="2"
                  Grid.ColumnSpan="9"
                  Width="610"
                  Items="{Binding Operation.Operator, Converter={StaticResource EnumToCollectionConverter}, Mode=OneTime}"
                  SelectedItem="{Binding Operation.Operator, Converter={StaticResource FromValueDescriptionToEnumConverter}}"/>

        <TextBlock Grid.Row="2" Grid.Column="0"
                   VerticalAlignment="Center"
                   IsVisible="{Binding Operation.ValueEnabled}"
                   IsEnabled="{Binding Operation.ValueEnabled}"
                   Text="Brightness:"/>

        <StackPanel Grid.Row="2" Grid.Column="2"
                    VerticalAlignment="Center"
                    Orientation="Horizontal" Spacing="5"
                    IsVisible="{Binding Operation.ValueEnabled}"
                    IsEnabled="{Binding Operation.ValueEnabled}">
            
            <NumericUpDown
                Minimum="0"
                Maximum="255"
                Value="{Binding Operation.Value}"/>

            <TextBlock VerticalAlignment="Center"
                       Text="{Binding Operation.ValuePercent, StringFormat={}{0}%}"/>

        </StackPanel>

      <CheckBox Grid.Row="2" Grid.Column="4"
                Content="Affect empty/black pixels"
                IsVisible="{Binding Operation.AffectBackPixelsEnabled}"
                IsChecked="{Binding Operation.AffectBackPixels}"/>

        <TextBlock Grid.Row="2" Grid.Column="4"
                   VerticalAlignment="Center"
                   HorizontalAlignment="Right"
                   IsVisible="{Binding Operation.ThresholdEnabled}"
                   IsEnabled="{Binding Operation.ThresholdEnabled}"
                   Text="Max.:"/>

        <NumericUpDown Grid.Row="2" Grid.Column="6"
                       Minimum="0"
                       Maximum="255"
                       IsVisible="{Binding Operation.ThresholdEnabled}"
                       IsEnabled="{Binding Operation.ThresholdEnabled}"
                       Value="{Binding Operation.ThresholdMaxValue}"/>

        <TextBlock Grid.Row="2" Grid.Column="8"
                   VerticalAlignment="Center"
                   HorizontalAlignment="Right"
                   IsVisible="{Binding Operation.ThresholdEnabled}"
                   IsEnabled="{Binding Operation.ThresholdEnabled}"
                   Text="Threshold:"/>

        <ComboBox Grid.Row="2" Grid.Column="10"
                  Width="130"
                  IsVisible="{Binding Operation.ThresholdEnabled}"
                  IsEnabled="{Binding Operation.ThresholdEnabled}"
                  Items="{Binding Operation.ThresholdType, Converter={StaticResource EnumToCollectionConverter}, Mode=OneTime}"
                  SelectedItem="{Binding Operation.ThresholdType, Converter={StaticResource FromValueDescriptionToEnumConverter}}"/>


        <TextBlock Grid.Row="4" Grid.Column="0"
                   VerticalAlignment="Center"
                   Text="Presets:"/>

        <StackPanel Grid.Row="4" Grid.Column="2"
                    Grid.ColumnSpan="9"
                    VerticalAlignment="Center"
                    Orientation="Horizontal" Spacing="5">
            <Button 
                Command="{Binding Operation.PresetStripAntiAliasing}"
                Content="Strip anti-aliasing"/>

            <Button
                IsVisible="{Binding Operation.ValueEnabled}"
                Command="{Binding Operation.PresetHalfBrightness}"
                Content="Half brightness"/>
        </StackPanel>

      </Grid>
  </StackPanel>

</UserControl>