2013-05-05 18:18:41 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <System/ComponentModel/CancelEventArgs.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace ComponentModel
|
|
|
|
{
|
|
|
|
//
|
|
|
|
class ClosingEventArgs : public CancelEventArgs
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClosingEventArgs();
|
|
|
|
bool IsCancelable;
|
|
|
|
|
|
|
|
int GetType() const;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|