■ 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 |
using System.Windows.Forms; using Infragistics.Win.UltraWinGrid; private UltraGrid ultraGrid; ... #region UltraGrid 마우스 DOWN 처리하기 - ultraGrid_MouseDown(sender, e) /// <summary> /// UltraGrid 마우스 DOWN 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void ultraGrid_MouseDown(object sender, MouseEventArgs e) { UIElement uiElement = this.ultraGrid.DisplayLayout.UIElement.ElementFromPoint(e.Location); UltraGridCell ultraGridCell = (UltraGridCell)uiElement.GetContext(typeof(UltraGridCell)); if(ultraGridCell != null) { MessageBox.Show(ultraGridCell.Value.ToString() + " 값을 갖는 셀 위에 있습니다."); } } #endregion |