반응형 셀 머지2 WPF & DevExpress GridControl Cell Merge 열 머지는 전체 or 개별 설정을 할 수 있다. 머진된 행을 선택하면... 분리가 되는데... 이유는 모르겠다. 읽기 전용이어도 분리가 된다. 가로 머지(병합)은 지원하지 않는다.. 하지만. 안되는 것은 아니다. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Me.. 2021. 3. 29. Devexpress Grid에서 자주 사용하는 코드 Grid에서 자주 사용 하는 코드 str = grdView.GetFocusedDataRow().Field("ColumnName"); //그리드에서 선택된 행의 데이터 가져오기 str = grdView.GetFocusedDataRow()["ColumnName"].ToString(); DataRow row = gvView.GetDataRow(gvView.FocusedRowHandle); //그리드의 선택된 cell의 데이터 가져오기 string str = gvSample.GetFocusedRowCellValue("colName").ToString(); string str = gvSample.GetRowCellValue(rowHandle, columnName); //특정 셀 값을 변경 gvSample.SetR.. 2016. 5. 3. 이전 1 다음 반응형