2012-03-08 19 views
8

Gizlenmiş bir takvim içeren bir Windows formum var. Formu hemen bir DataGridView'ın hücresinin altında göstermek istiyorum. Pozisyon, mevcut hücrenin konumuna göre değişir.Geçerli hücre konumu x ve y'yi bir DataGridView'da nasıl alabilirim?

Geçerli hücre ya da geçerli sütunu istemiyorum, böylece tarih formlarımın konumunu ayarlayabilmem için konum istiyorum.

int po_X = paygrid.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Left+paygrid.Left; 
int po_Y = paygrid.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Bottom+paygrid.Top; 
form_date.Location = new System.Drawing.Point(po_X, po_Y); 

cevap

10

Sen paygrid.PointToScreen() yöntemini kullanabilirsiniz: Burada

kullanıyorum ama onun değil çalışma budur.

Point pt; 
GetCursorPos(out pt); 

punto x ve y sağlayacak şekilde

form_date.Location = paygrid.PointToScreen(
    paygrid.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Location); 
+0

teşekkür ederim bu yüzden much..it mükemmel – user1231584

0

Sen

[DllImport("user32.dll", EntryPoint = "GetCursorPos")] 
private static extern bool GetCursorPos(out Point lpPoint); 

ve çağrı yöntemini deneyebilirsiniz.

+0

Teşekkür çalıştı ama ge istemiyorum imlecin konumu datagridview içindeki mevcut hücrenin konumunu istiyorum .. ve zaten watbywbarif'ten benim cevabımı aldım – user1231584

1

Bunu denemek isteyebilirsiniz:

Lookup_Account.Left = datagrid_setting.GetCellDisplayRectangle(colIndex, rowIndex, False).Left 
Lookup_Account.Top = datagrid_setting.GetCellDisplayRectangle(colIndex, rowIndex, False).Top 
+1

StackOverflow'a Hoş Geldiniz! Lütfen kodunuzla ilgili kısa bir açıklama ekleyin. Neden ve nasıl çalışır? – Aurasphere

0
Rectangle cellRect = paygrid.GetCellDisplayRectangle(e.ColumnIndex, 
e.RowIndex, true); 

Yani Sen kullanabilirsiniz:

cellRect.X - for X position, cellRect.Y - for Y position, 
cellRect.Width - for column width and cellRect.Height - for column height