1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/Artemis/ColorBox/ColorChangedEventArgs.cs
SpoinkyNL 81a8011338 Added ColorBox source
Added direction buttons functionality
2016-10-07 00:01:31 +02:00

27 lines
728 B
C#

/***************** NCore Softwares Pvt. Ltd., India **************************
ColorBox
Copyright (C) 2013 NCore Softwares Pvt. Ltd.
This program is provided to you under the terms of the Microsoft Public
License (Ms-PL) as published at http://colorbox.codeplex.com/license
***********************************************************************************/
using System.Windows;
using System.Windows.Media;
namespace ColorBox
{
public class ColorChangedEventArgs : RoutedEventArgs
{
public ColorChangedEventArgs(RoutedEvent routedEvent, Color color)
{
RoutedEvent = routedEvent;
Color = color;
}
public Color Color { get; set; }
}
}