2013-07-12 21:30:13 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
* ClosingEventArgs.h *
|
|
|
|
* *
|
|
|
|
* System::ComponentModel::ClosingEventArgs definition file *
|
|
|
|
* Copyright (c) XFX Team. All rights reserved *
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifndef _SYSTEM_COMPONENTMODEL_CLOSINGEVENTARGS_
|
|
|
|
#define _SYSTEM_COMPONENTMODEL_CLOSINGEVENTARGS_
|
2013-05-05 18:18:41 +02:00
|
|
|
|
|
|
|
#include <System/ComponentModel/CancelEventArgs.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace ComponentModel
|
|
|
|
{
|
2013-07-12 21:30:13 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class ClosingEventArgs : public CancelEventArgs
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClosingEventArgs();
|
|
|
|
bool IsCancelable;
|
|
|
|
|
2013-07-12 21:30:13 +02:00
|
|
|
static const Type& GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
2013-07-12 21:30:13 +02:00
|
|
|
|
|
|
|
#endif //_SYSTEM_COMPONENTMODEL_CLOSINGEVENTARGS_
|