Download KeyboardSupportDemo.zip version 1.0.0.0, last updated 04/06/2016 (10.17 KB)

Download
  • md5: 90e557815ee49f581745ed334ea2d9ed
  • sha1: 3fbc13752142394a4c4dcab84de6ffce94de3b4f
  • sha256: eb014fe61a006edcbe89107bc437dd99b3910badf471f20dc30d79fd7edbc743
using System;
using System.Windows.Forms;

// Adding keyboard accelerators and visual cues to a WinForms control
// http://www.cyotek.com/blog/adding-keyboard-accelerators-and-visual-cues-to-a-winforms-control
// Copyright 2016 Cyotek Ltd. All Rights Reserved.
//
//  If find this code useful, attribution, donations or contributions are welcome.

namespace Cyotek.Articles.KeyboardSupport
{
  static class Program
  {
    #region Static Methods

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
      Application.EnableVisualStyles();
      Application.SetCompatibleTextRenderingDefault(false);
      Application.Run(new DemoForm());
    }

    #endregion
  }
}

Donate

Donate