This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //DDFormsExtentions.DDFormFader - Class | |
| //Copyright October 2009 by Rickey Ward (DiamondDrake) | |
| //Email: RickeyWard@DiamondDrake.com | |
| //----- | |
| //This class provides more control over opacity in windowsforms applications | |
| //by providing a more indepth wrapper for the WS_EX_LAYERED window api | |
| //of windows 2k+ | |
| // | |
| //THIS CLASS IS PROVIDED ON AN "AS IS" BASIS, AND RICKEY WARD EXPRESSLY DISCLAIMS ANY | |
| //AND ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| using System.Runtime.CompilerServices; | |
| using System.Windows.Input; | |
| using System.Windows.Threading; | |
| using System.Collections.Generic; | |
| namespace Ownskit.Utils | |
| { |
NewerOlder