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

17 lines
460 B
C
Raw Normal View History

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