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

ColorPickerWindow.axaml « Windows « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbbc56341322f80bfefda8cd84b04f392cac1742 (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
<Window 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"
        xmlns:cp="clr-namespace:ThemeEditor.Controls.ColorPicker;assembly=ThemeEditor.Controls.ColorPicker"
        mc:Ignorable="d" d:DesignWidth="420" d:DesignHeight="420"
        WindowStartupLocation="CenterOwner"
        Width="420"
        SizeToContent="Height"
        CanResize="False"
        x:Class="UVtools.WPF.Windows.ColorPickerWindow"
        Title="Color Picker"
        Icon="/Assets/Icons/UVtools.ico"
        >
  <StackPanel Orientation="Vertical">
    <cp:ColorPicker Color="{Binding ResultColor, Mode=TwoWay}" />

    <Panel Background="LightGray">
      <StackPanel HorizontalAlignment="Right" Margin="15" Orientation="Horizontal">
        <Button HorizontalAlignment="Right" Name="Actions.Save" Margin="0,0,10,0" Padding="10" IsDefault="True"
                  Command="{Binding OnClickOk}">
          <StackPanel Orientation="Horizontal">
            <Image Source="/Assets/Icons/accept-16x16.png"/>
            <TextBlock Margin="10,0,0,0">Select</TextBlock>
          </StackPanel>
        </Button>

        <Button HorizontalAlignment="Right" 
                Name="Actions.Cancel" Padding="10" IsCancel="True"
                Command="{Binding Close}">
          <StackPanel Orientation="Horizontal">
            <Image Source="/Assets/Icons/exit-16x16.png"/>
            <TextBlock Margin="10,0,0,0">Cancel</TextBlock>
          </StackPanel>
        </Button>
      </StackPanel>
    </Panel>

  </StackPanel>

</Window>