| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // System.Windows.Forms.FormBorderStyle.cs
- //
- // Author:
- // Dennis Hayes ([email protected])
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Drawing;
- namespace System.Drawing.Imaging
- {
- /// <summary>
- /// Summary description for ImageAttributes.
- /// </summary>
- public class ImageAttributes {
- public ImageAttributes() {
- }
- //Clears the color keys for all GDI+ objects
- public void ClearColorKey(){
- }
- //Sets the color keys for all GDI+ objects
- public void SetColorKey(Color colorLow, Color colorHigh){
- }
- ~ImageAttributes() {
- }
- }
- }
|