我的TLP有问题。当鼠标在细胞上移动时,我希望改变细胞的颜色。我试过不同的东西,但没有任何作用。你知道我怎么能解决这个问题吗?
答案 0 :(得分:1)
TLP不是很好用。
您可以使用TableLayoutCellPaintEventArgs
了解正在绘制的单元格,并将光标的屏幕位置转换为PointToClient
的相对位置。
这是一个例子,但我不确定它对大型TLP的效果如何:
private void tableLayoutPanel1_MouseMove(object sender, MouseEventArgs e)
{
tableLayoutPanel1.Invalidate();
}
private void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
Point pt = tableLayoutPanel1.PointToClient(Cursor.Position);
using (SolidBrush brush = new SolidBrush(e.CellBounds.Contains(pt) ?
Color.Red : tableLayoutPanel1.BackColor))
e.Graphics.FillRectangle(brush, e.CellBounds);
}
这会绘制光标所在的单元格,并在光标离开时重置。如果要保留更改的颜色,则需要将其存储在二维数组中,并将其用作替代颜色。细节将取决于您想要实现的目标。
您可能还想学习this post以了解有关使用TLP的更多信息。