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

18 lines
357 B
C
Raw Normal View History

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