mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Added TypeInfo for all relevant types Added comments Updated DependencyProperty to work with System::Type Fixed casing on PropertyMetadata
33 lines
802 B
C++
33 lines
802 B
C++
/*****************************************************************************
|
|
* CancelEventArgs.h *
|
|
* *
|
|
* System::ComponentModel::CancelEventArgs definition file *
|
|
* Copyright (c) XFX Team. All rights reserved *
|
|
*****************************************************************************/
|
|
#ifndef _SYSTEM_COMPONENTMODEL_CANCELEVENTARGS_
|
|
#define _SYSTEM_COMPONENTMODEL_CANCELEVENTARGS_
|
|
|
|
#include <System/EventArgs.h>
|
|
|
|
namespace System
|
|
{
|
|
namespace ComponentModel
|
|
{
|
|
/**
|
|
* Provides data for a cancelable event.
|
|
*/
|
|
class CancelEventArgs : public EventArgs
|
|
{
|
|
public:
|
|
bool Cancel;
|
|
|
|
CancelEventArgs();
|
|
CancelEventArgs(const bool value);
|
|
|
|
static const Type& GetType();
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //_SYSTEM_COMPONENTMODEL_CANCELEVENTARGS_
|