ColorEventArgs.cs 376 B

12345678910111213141516171819202122
  1. using System;
  2. namespace PaintDotNet
  3. {
  4. [Serializable]
  5. internal class ColorEventArgs : EventArgs
  6. {
  7. private ColorBgra color;
  8. public ColorBgra Color
  9. {
  10. get
  11. {
  12. return color;
  13. }
  14. }
  15. public ColorEventArgs(ColorBgra color)
  16. {
  17. this.color = color;
  18. }
  19. }
  20. }