2022-05-21 19:58:09 +02:00

15 lines
246 B
C++

#pragma once
#include <cstdint>
namespace Forms
{
// Specifies the appearance of a control.
enum class Appearence
{
// The default appearance defined by the control.
Normal = 0,
// The appearance of a Windows button.
Button = 1
};
}