■ CheckedListBox 클래스에서 데이터를 바인딩하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
using System; using System.Collections.ObjectModel; using System.Drawing; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Declaration ////////////////////////////////////////////////////////////////////////////////////////// Class /// <summary> /// 직원 /// </summary> public class Employee { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region ID - ID /// <summary> /// ID /// </summary> public string ID { get; set; } #endregion #region 성명 - Name /// <summary> /// 성명 /// </summary> public string Name { get; set; } #endregion #region 설명 - Description /// <summary> /// 설명 /// </summary> public string Description { get; set; } #endregion } //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 체크 리스트 박스 /// </summary> private CheckedListBox checkedListBox; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.checkedListBox = new CheckedListBox(); this.checkedListBox.Dock = DockStyle.Fill; Controls.Add(this.checkedListBox); ListBox listBox = this.checkedListBox as ListBox; if(listBox != null) { listBox.DataSource = GetCollection(); // DataSource 속성부터 설정해야 한다. listBox.DisplayMember = "Name"; listBox.ValueMember = "ID"; } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private #region 컬렉션 구하기 - GetCollection() /// <summary> /// 컬렉션 구하기 /// </summary> /// <returns>컬렉션</returns> private ObservableCollection<Employee> GetCollection() { ObservableCollection<Employee> collection = new ObservableCollection<Employee>(); for(int i = 0; i < 100; i++) { collection.Add(new Employee() { ID = (i + 1).ToString(), Name = "직원 " + (i + 1).ToString(), Description = "설명 " + (i + 1).ToString() }); } return collection; } #endregion } } |