DevExpress 의 GridView 컨트롤을 사용하였다.
GridView에서 Row(나 Cell)를 선택하면, Cell에만 점선 테두리가 생긴다.
GridView.FocusRectStyle PropertyTo prevent the focused cell from being highlighted, set the GridOptionsSelection.EnableAppearanceFocusedCell property to false. To prevent the dotted focus rectangle from being painted around the focused cell, use the FocusRectStyle property. |
위 그림과 같이 점선 테두리가 Row 전체에 생기게 하려면,
다음과 같이 GridView의 속성을 변경한다.
1 2 3 4 5 6 | // Make the grid read-only. gridView1.OptionsBehavior.Editable = false; // Prevent the focused cell from being highlighted. gridView1.OptionsSelection.EnableAppearanceFocusedCell = false; // Draw a dotted focus rectangle around the entire row. gridView1.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus; | cs |
'컴퓨터 > DX C#' 카테고리의 다른 글
[DevExpress] GridControl 정렬 후 여러 항목의 인덱스 가져오기 (0) | 2016.06.09 |
---|---|
[DevExpress] PropertyGrid 사용 중 확장되지 않는 속성 문제 (0) | 2016.01.28 |
[DX] DevExpress.XtraGrid.Views.BandedGrid 사용하기 (0) | 2015.04.15 |
[DevExpress] C# 리본 UI 스킨 적용 할 때, Form Boundary Areo 없애기 (0) | 2015.04.02 |