r5sdk/r5dev/thirdparty/cppnet/cppkore/UIXRadioButton.h

18 lines
359 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#pragma once
#include "RadioButton.h"
using namespace Forms;
namespace UIX
{
// Represents a UIX themed radio button control.
class UIXRadioButton : public RadioButton
{
public:
UIXRadioButton();
// Override the paint event to provide our custom radio button control.
virtual void OnPaint(const std::unique_ptr<PaintEventArgs>& EventArgs);
};
}