鼠标移动到我的表格布局面板的一个单元格上
Mouse Move on a cell of my tablelayoutpanel
我的 TLP 有问题。我希望当鼠标在单元格上移动时更改单元格的颜色。我尝试了不同的东西,但没有任何效果。你知道我该如何解决这个问题吗?
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 的更多信息..
我的 TLP 有问题。我希望当鼠标在单元格上移动时更改单元格的颜色。我尝试了不同的东西,但没有任何效果。你知道我该如何解决这个问题吗?
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 的更多信息..