Skip to content

Instantly share code, notes, and snippets.

View RickeyWard's full-sized avatar

DiamondDrake RickeyWard

  • DiamondDrake Software and Design, @SwampfoxInc
  • Columbia, SC
View GitHub Profile
//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
@Ciantic
Ciantic / keyboardlistener.cs
Created July 11, 2010 17:33
C# Keyboard listener
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
{