1. [GridView] Column에 ComboBox(콤보박스) 넣기 - gridview에 ComboBox를 넣어 선택할수 있게 구현하는 방법 1) 호출 함수 생성 private void setComboBoxData(DevExpress.XtraGrid.Columns.GridColumn agClumn, params object[] itemArray) { RepositoryItemComboBox comboItem = new RepositoryItemComboBox(); comboItem.Items.Clear(); agClumn.ColumnEdit = comboItem; foreach (string itemValue in itemArray) { comboItem.Items.Add(itemValue); } c..