■ 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 |
using System.Drawing; using System.Windows.Forms; using Infragistics.Win; using Infragistics.Win.UltraWinGrid; #region UltraGrid 셀 더블 클릭시 처리하기 - ultraGrid_DoubleClickCell(sender, e) /// <summary> /// UltraGrid 셀 더블 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void ultraGrid_DoubleClickCell(object sender, DoubleClickCellEventArgs e) { Point point = this.ultraGrid.PointToClient(Cursor.Position); UIElement uiElement = this.ultraGrid.DisplayLayout.UIElement.ElementFromPoint(point); if(uiElement == null) { return; } while(uiElement != null) { if(uiElement.GetType() == typeof(CellUIElement)) { CellUIElement cellUIElement = uiElement as CellUIElement; MessageBox.Show("Cell.Value = " + cellUIElement.Cell.Value.ToString()); } uiElement = uiElement.Parent; } } #endregion |