|
//------------------------------------------------------------------------------
// <copyright file="UpDownEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms {
using System.Diagnostics;
using System;
/// <include file='doc\UpDownEventHandler.uex' path='docs/doc[@for="UpDownEventHandler"]/*' />
/// <internalonly/>
/// <devdoc>
/// <para>
/// UpDownEventHandler
/// A delegate for an updown event handler.
/// </para>
/// </devdoc>
public delegate void UpDownEventHandler(object source, UpDownEventArgs e);
}
|