Ex)
public class DataSample
{
int num { get; set; }
string data = { get; set; }
public override string ToString()
{
return data;
}
}
위의 class를 cbobobox에 item add 해주면 자동으로 ToString()을 override한 data항목이 표출되고
DataSample sample = combobox1.SelectedItem as DataSample; 이렇게 사용하면 데이터를 읽어올 수 있다.
위에는 int, string 두개의 항목만 넣었지만 다수의 항목을 넣고 사용할 수 있다.
'devexpress' 카테고리의 다른 글
[c#, devexpress] XtraForm caption font 변경하기 (0) | 2020.07.24 |
---|