Mouse Move on a cell of my tablelayoutpanel
我的TLP有问题。 我希望当鼠标移到单元格上方时更改单元格的颜色。 我尝试了不同的事情,但没有任何效果。 您是否知道如何解决这个问题?
TLP并不是很好用。
您可以使用
这是一个示例,但是我不确定它对于较大的TLP是否有效:
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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); } |
这将绘制光标所在的单元格,并在离开时重置。 如果要保留更改的颜色,则需要将其存储在2d数组中,并将其用作替代颜色。 详细信息将取决于您要实现的目标。
您可能还需要研究这篇文章,以了解有关使用TLP的更多信息。