ImageAttributes.cs 627 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // System.Windows.Forms.FormBorderStyle.cs
  3. //
  4. // Author:
  5. // Dennis Hayes ([email protected])
  6. // (C) 2002 Ximian, Inc. http://www.ximian.com
  7. //
  8. using System;
  9. using System.Drawing;
  10. namespace System.Drawing.Imaging
  11. {
  12. /// <summary>
  13. /// Summary description for ImageAttributes.
  14. /// </summary>
  15. public class ImageAttributes {
  16. public ImageAttributes() {
  17. }
  18. //Clears the color keys for all GDI+ objects
  19. public void ClearColorKey(){
  20. }
  21. //Sets the color keys for all GDI+ objects
  22. public void SetColorKey(Color colorLow, Color colorHigh){
  23. }
  24. ~ImageAttributes() {
  25. }
  26. }
  27. }