1
0
mirror of https://github.com/Halofreak1990/XFXFramework synced 2024-12-26 13:49:34 +01:00
Tom Lint 52ef14a94b Transition from SVN to Git
Added implicit conversion to base types to all primary types (UInt32 et
al)
Added implicit conversion from System::String to const char*
2013-05-05 18:18:41 +02:00

27 lines
487 B
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include <System/Windows/RoutedEventArgs.h>
#include <System/Windows/Input/Enums.h>
namespace System
{
namespace Windows
{
namespace Input
{
// Provides event data for the System::Windows::UIElement.KeyUp and System::Windows::UIElement.KeyDown events.
class KeyEventArgs : public RoutedEventArgs
{
private:
Keys_t key;
public:
bool Handled;
Keys_t getKey() const;
};
typedef Event<Object*, KeyEventArgs*> KeyEventHandler;
}
}
}