|
-
February 21st, 2003, 01:09 PM
#1
DragDrop in DataGrid
Can someone tell me how to Drop something in DataGrid.
private void Interaction_dgr_DragDrop(object sender, System.Windows.Forms.DragEventArgs e)
{
DataGrid.HitTestInfo hti = Interaction_dgr.HitTest(new Point(e.X, e.Y));
MessageBox.Show(hti.Column.ToString());
}
My HitTestInfo object return -1 when i'm trying to get Row and Column properties.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|