在表格布局面板中的某些单元格周围绘制边框

发布于 2024-11-13 22:25:12 字数 229 浏览 3 评论 0原文

不要问为什么,但我需要在 TableLayoutPanel 中的某些单元格周围绘制边框。

例如,为了简单起见,假设我有一个 1 行 5 列的 TableLayoutPanel。每个单元格中都有一个按钮。我想在前 3 个单元格周围绘制一个方框,然后在最后 2 个单元格周围绘制另一个方框。所以总共两盒。

关于如何实现这一目标有什么建议吗?

谢谢。

Don't ask why but I have the requirement to draw a border around certain cells in a TableLayoutPanel.

For example, for simplicity, lets say I have a 1 row, 5 column TableLayoutPanel. Each cell has a button in it. I would like to draw a box around the first 3 cells and then another box around the last 2 cells. So two boxes total.

Any suggestions on how to accomplish that?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

空名 2024-11-20 22:25:12

您可以使用 CellPaint 事件并在需要时绘制边框矩形:

tableLayoutPanel1.CellPaint += tableLayoutPanel1_CellPaint;

处理程序:

void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
    if (e.Column == 1 && e.Row == 0)
        e.Graphics.DrawRectangle(new Pen(Color.Blue), e.CellBounds);
}

您可以使用 ControlPaint 绘制任何类型的边框:

if (e.Column == 1 && e.Row == 0)
{
    var rectangle = e.CellBounds;
    rectangle.Inflate(-1, -1);

    ControlPaint.DrawBorder3D(e.Graphics, rectangle, Border3DStyle.Raised, Border3DSide.All); // 3D border
    ControlPaint.DrawBorder(e.Graphics, rectangle, Color.Red, ButtonBorderStyle.Dotted); // dotted border
}

You could use CellPaint event and draw the border rectangle when needed:

tableLayoutPanel1.CellPaint += tableLayoutPanel1_CellPaint;

The handler:

void tableLayoutPanel1_CellPaint(object sender, TableLayoutCellPaintEventArgs e)
{
    if (e.Column == 1 && e.Row == 0)
        e.Graphics.DrawRectangle(new Pen(Color.Blue), e.CellBounds);
}

You can draw any kind of border using ControlPaint:

if (e.Column == 1 && e.Row == 0)
{
    var rectangle = e.CellBounds;
    rectangle.Inflate(-1, -1);

    ControlPaint.DrawBorder3D(e.Graphics, rectangle, Border3DStyle.Raised, Border3DSide.All); // 3D border
    ControlPaint.DrawBorder(e.Graphics, rectangle, Color.Red, ButtonBorderStyle.Dotted); // dotted border
}
酷遇一生 2024-11-20 22:25:12

访问 tableLayoutPanel 的属性并将 CellBorderStyle 设置为 Single

Access properties for the tableLayoutPanel and Set the CellBorderStyle to Single

菩提树下叶撕阳。 2024-11-20 22:25:12

绘图是编码错误修剪,加上代码污染。
在 winforms 中的 TableLayoutPanel 开始支持表格中“边框”的基本知识之前,如果需要,最好使用带有额外表格的面板(Dock:Fill)。

Drawing is coding error prune, plus code polluting.
Until TableLayoutPanel in winforms starts supporting the very basics of «border» in table, better use a panel (Dock:Fill) with an extra table inside, if needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文