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