Hi,
we are using DataGridView in our application.I noticed that DataGridView.CellValueNeeded is called when i move the mouse over the cells.After some searching i found that When the mouse moves to a cell, the
DataGridView will show a tooltip to show the completed content of the cell if its value cannot be displayed completely in the cell. This will help the user see the complete content of the cell when necessary and it is
the default behavior of the DataGridView. As a result, the CellValueNeeded event will be fired when we move the mouse on it, since it needs the value to format and construct the ToolTip. I don't know if it is correct in my case.Is it?if yes is there anyway to avoid it?
Thank you
we are using DataGridView in our application.I noticed that DataGridView.CellValueNeeded is called when i move the mouse over the cells.After some searching i found that When the mouse moves to a cell, the
DataGridView will show a tooltip to show the completed content of the cell if its value cannot be displayed completely in the cell. This will help the user see the complete content of the cell when necessary and it is
the default behavior of the DataGridView. As a result, the CellValueNeeded event will be fired when we move the mouse on it, since it needs the value to format and construct the ToolTip. I don't know if it is correct in my case.Is it?if yes is there anyway to avoid it?
Thank you