#pragma once #include using namespace System::Windows::Controls::Primitives; namespace System { namespace Windows { namespace Controls { // Represents a button control. class Button : public ButtonBase { protected: void OnClick(); public: Button(); ~Button(); static int GetType(); bool operator ==(const Button& right) const; bool operator !=(const Button& right) const; }; } } }