1
0
mirror of https://github.com/Mauler125/r5sdk.git synced 2025-02-09 19:15:03 +01:00
2022-05-21 19:58:09 +02:00

17 lines
460 B
C++

#pragma once
#include <cstdint>
namespace Forms
{
// Specifies the ComboBox style.
enum class ComboBoxStyle
{
// The text portion is editable. The list portion is always visible.
Simple = 0,
// The text portion is editable. The user must click the arrow button to display the list portion.
DropDown = 1,
// The user cannot directly edit the text portion. The user must click the arrow button to display the list portion.
DropDownList = 2
};
}