|
//------------------------------------------------------------------------------
// <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);
}
|