■ ComboBox 클래스에서 열거형 값을 바인딩하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 |
using System.Drawing; using System.Windows.Forms; ComboBox comboBox = new ComboBox(); comboBox.DataSource = Enum.GetValues(typeof(Color)); Color color = (Color)(comboBox.SelectedItem); |