Click here to Skip to main content
15,878,809 members
Articles / Desktop Programming / Win32

Toggle Keys Controller

Rate me:
Please Sign up or sign in to vote.
4.89/5 (27 votes)
3 Sep 2009CPOL6 min read 49.8K   1.4K   50  
A class that enables you to control and monitor the toggle keys such as CapsLock, NumLock, and ScrollLock.
using System;

namespace Keyboard
{
    /// <summary>
    /// Event arguments passed when a toggle key changes state.
    /// </summary>
    public class ToggleStateChangedEventArgs : EventArgs
    {
        #region Constructors

        /// <summary>
        /// Creates a new instance of the Keyboard.ToggleStateChangedEventArgs class.
        /// </summary>
        /// <param name="on">The state of the changed key.</param>
        internal ToggleStateChangedEventArgs(bool isOn)
        {
            IsOn = isOn;
        }

        #endregion

        #region Properties

        /// <summary>
        /// Gets the state of the changed key.
        /// </summary>
        public bool IsOn
        {
            get;
            private set;
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Dave Meadowcroft
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions