gridview에서 row를 이동할 경우 해당 row가 맨위나 맨 아래로 갈 경우가 많은데
이럴 경우 아래 코드로 적용해주면 이동한 row가 화면 중앙에 위치하여 보기 편해짐
-----------------------------------------------------------------------------
if (nRow > OutlookGrid_main.DisplayedRowCount(false) / 2)
OutlookGrid_main.FirstDisplayedScrollingRowIndex = nRow - OutlookGrid_main.DisplayedRowCount(false) / 2;
OutlookGrid_main.Refresh();
-----------------------------------------------------------------------------
* DisplayedRowCount안의 파라메터는 컨트롤에 따라 받는경우와 안받는 경우가 있으니 참고
'프로그래밍 > C#' 카테고리의 다른 글
C# Multi tiff Image Convert to PDF (0) | 2014.03.31 |
---|---|
C# Key 두개를 이벤트로 받고 싶을때 (ctrl+c등) (0) | 2013.09.27 |
C# Disable Buttons in a Button Column in the Windows Forms DataGridView Control (0) | 2013.09.27 |
webbrower editor (0) | 2013.09.09 |
C# Webbrowser ExecComand 리스트 (0) | 2013.09.05 |