|
//------------------------------------------------------------------------------
// <copyright file="InputLangChangeEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
using System.Drawing;
/// <include file='doc\InputLangChangeEventHandler.uex' path='docs/doc[@for="InputLanguageChangedEventHandler"]/*' />
/// <devdoc>
/// <para>
/// Represents the method that will handle the <see cref='System.Windows.Forms.Form.InputLanguageChanged'/> event of a
/// <see cref='System.Windows.Forms.Form'/>.
/// </para>
/// </devdoc>
public delegate void InputLanguageChangedEventHandler(object sender, InputLanguageChangedEventArgs e);
}
|