Question

How can I add text or image for DataGridView on position -1, -1, ex. in imageenter image description here

Était-ce utile?

La solution

use TopLeftHeaderCell property of DataGridview. To set text use :

dataGridView1.TopLeftHeaderCell.Value = "hello";
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top