2009-10-25 11 views
22

मेरे पास DataGridView है जो List<myClass> को बाध्य करता है और मैं इसे myClass "में" Priority "संपत्ति से सॉर्ट करता हूं। तो मैं अपनी "Priority" संपत्ति को बदलने के लिए कुछ स्थिति में "DataGridViewRow" खींचना चाहता हूं।मैं डेटाग्रिड व्यू पंक्तियों को एक दूसरे के नीचे खींच और छोड़ सकता हूं?

मैं "& ड्रॉप" डेटाग्रिड व्यू पंक्तियों को कैसे खींच सकता हूं? और इसे कैसे संभालें?

उत्तर

41

मैं MSDN

पर इस code sample पाया

नोट निम्नलिखित:

1)। DataGridView प्रॉपर्टी AllowDrop को सत्य पर सेट किया जाना चाहिए (डिफ़ॉल्ट गलत है)।

2)। नीचे दिया गया उदाहरण बॉक्स के बाहर काम करता है जब DataGridView डेटा-बाउंड नहीं है। अन्यथा यह एक अवैधऑपरेशन अपवाद फेंक देगा। यदि यह डेटाबेस है, तो आपको DataSource में आइटमों के क्रम में हेरफेर करना चाहिए।

private Rectangle dragBoxFromMouseDown; 
private int rowIndexFromMouseDown; 
private int rowIndexOfItemUnderMouseToDrop; 
private void dataGridView1_MouseMove(object sender, MouseEventArgs e) 
{ 
    if ((e.Button & MouseButtons.Left) == MouseButtons.Left) 
    { 
     // If the mouse moves outside the rectangle, start the drag. 
     if (dragBoxFromMouseDown != Rectangle.Empty && 
      !dragBoxFromMouseDown.Contains(e.X, e.Y)) 
     { 

      // Proceed with the drag and drop, passing in the list item.      
      DragDropEffects dropEffect = dataGridView1.DoDragDrop(
      dataGridView1.Rows[rowIndexFromMouseDown], 
      DragDropEffects.Move); 
     } 
    } 
} 

private void dataGridView1_MouseDown(object sender, MouseEventArgs e) 
{ 
    // Get the index of the item the mouse is below. 
    rowIndexFromMouseDown = dataGridView1.HitTest(e.X, e.Y).RowIndex; 
if (rowIndexFromMouseDown != -1) 
    { 
     // Remember the point where the mouse down occurred. 
    // The DragSize indicates the size that the mouse can move 
    // before a drag event should be started.     
     Size dragSize = SystemInformation.DragSize; 

     // Create a rectangle using the DragSize, with the mouse position being 
     // at the center of the rectangle. 
     dragBoxFromMouseDown = new Rectangle(new Point(e.X - (dragSize.Width/2), 
                 e.Y - (dragSize.Height/2)), 
          dragSize); 
    } 
    else 
     // Reset the rectangle if the mouse is not over an item in the ListBox. 
     dragBoxFromMouseDown = Rectangle.Empty; 
} 

private void dataGridView1_DragOver(object sender, DragEventArgs e) 
{ 
    e.Effect = DragDropEffects.Move; 
} 

private void dataGridView1_DragDrop(object sender, DragEventArgs e) 
{ 
    // The mouse locations are relative to the screen, so they must be 
    // converted to client coordinates. 
    Point clientPoint = dataGridView1.PointToClient(new Point(e.X, e.Y)); 

    // Get the row index of the item the mouse is below. 
    rowIndexOfItemUnderMouseToDrop = 
     dataGridView1.HitTest(clientPoint.X, clientPoint.Y).RowIndex; 

    // If the drag operation was a move then remove and insert the row. 
    if (e.Effect== DragDropEffects.Move) 
    { 
     DataGridViewRow rowToMove = e.Data.GetData(
      typeof(DataGridViewRow)) as DataGridViewRow; 
     dataGridView1.Rows.RemoveAt(rowIndexFromMouseDown); 
     dataGridView1.Rows.Insert(rowIndexOfItemUnderMouseToDrop, rowToMove); 

    } 
} 
+0

मूल लेख की लिंक की सराहना किया जाएगा :) धन्यवाद – Teejay

+0

वास्तव में यह दो साल पहले से है और मुझे लगता है कि इसे यहाँ से है: http://social.msdn.microsoft.com/Forums/en-US/ Winforms/thread/16b0a44e-35a0-4bc8-9ccd-ec2c62c95a55 –

+0

आपके उत्तर – Teejay

संबंधित मुद्दे