cemu-DS4Windows/DS4Windows/DS4Forms/ColorPickerWindow.xaml
2019-12-18 15:33:23 -06:00

14 lines
695 B
XML

<Window x:Class="DS4WinWPF.DS4Forms.ColorPickerWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:local="clr-namespace:DS4WinWPF.DS4Forms"
mc:Ignorable="d"
Title="ColorPickerWindow" Height="400" Width="300">
<DockPanel>
<xctk:ColorCanvas x:Name="colorPicker" SelectedColorChanged="ColorPicker_SelectedColorChanged" />
</DockPanel>
</Window>