mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-22 17:29:18 +01:00
14 lines
695 B
Plaintext
14 lines
695 B
Plaintext
|
<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>
|