File: winforms\Managed\System\WinForms\PreviewKeyDownEventHandler.cs
Project: ndp\fx\src\System.Windows.Forms.csproj (System.Windows.Forms)
//------------------------------------------------------------------------------
// <copyright file="PreviewKeyDownEventHandler.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
/*
 */
 
namespace System.Windows.Forms {
 
    using System.Diagnostics;
 
    using System;
 
 
    /// <include file='doc\PreviewKeyDownEventHandler.uex' path='docs/doc[@for="PreviewKeyDownEventHandler"]/*' />
    /// <devdoc>
    ///    <para>
    ///       Represents the method that will handle PreviewKeyDown events.
    ///    </para>
    /// </devdoc>
    public delegate void PreviewKeyDownEventHandler(object sender, PreviewKeyDownEventArgs e);
}