■ UltraGrid 클래스에서 행 스크롤 영역을 작업하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
using System; using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... #region UltraGrid 행 초기화 하기 - ultraGrid_InitializeRow(sender, e) /// <summary> /// UltraGrid 행 초기화 하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void ultraGrid_InitializeRow(object sender, InitializeRowEventArgs e) { if(e.Row.Band.Index == 0) { e.Row.ExpandAll(); } } #endregion #region Split Row Scroll Region 버튼 클릭시 처리하기 - splitRowScrollRegionButton_Click(sender, e) /// <summary> /// Split Row Scroll Region 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void splitRowScrollRegionButton_Click(object sender, EventArgs e) { this.ultraGrid.DisplayLayout.MaxRowScrollRegions = 10; this.ultraGrid.DisplayLayout.RowScrollRegions[0].Split(); this.ultraGrid.DisplayLayout.RowScrollRegions[1].Split(); this.ultraGrid.DisplayLayout.RowScrollRegions[2].Split(); } #endregion #region One Row Scroll Region 버튼 클릭시 처리하기 - oneRowScrollRegionButton_Click(sender, e) /// <summary> /// One Row Scroll Region 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void oneRowScrollRegionButton_Click(object sender, EventArgs e) { if(this.ultraGrid.DisplayLayout.RowScrollRegions.Count > 1) { for(int i = this.ultraGrid.DisplayLayout.RowScrollRegions.Count - 1; i >= 1; i--) { this.ultraGrid.DisplayLayout.RowScrollRegions.Remove(this.ultraGrid.DisplayLayout.RowScrollRegions[i]); } } this.ultraGrid.DisplayLayout.MaxRowScrollRegions = 1; } #endregion |