mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
27 lines
728 B
C#
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; }
|
|
}
|
|
} |