mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
18 lines
327 B
C
18 lines
327 B
C
|
#pragma once
|
||
|
|
||
|
#include "Button.h"
|
||
|
|
||
|
using namespace Forms;
|
||
|
|
||
|
namespace UIX
|
||
|
{
|
||
|
// Represents a UIX themed button control.
|
||
|
class UIXButton : public Button
|
||
|
{
|
||
|
public:
|
||
|
UIXButton();
|
||
|
|
||
|
// Override the paint event to provide our custom button control.
|
||
|
virtual void OnPaint(const std::unique_ptr<PaintEventArgs>& EventArgs);
|
||
|
};
|
||
|
}
|