|
//------------------------------------------------------------------------------
// <copyright file="QuestionEventHandler.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Windows.Forms
{
using System;
using System.Diagnostics;
/// <include file='doc\QuestionEventHandler.uex' path='docs/doc[@for="QuestionEventHandler"]/*' />
/// <devdoc>
/// Describes a delegate for an event that has a QuestionEventArgs as
/// a parameter.
/// </devdoc>
public delegate void QuestionEventHandler(object sender, QuestionEventArgs e);
}
|