15 lines
246 B
C
Raw Normal View History

2022-05-21 19:58:09 +02:00
#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
};
}