📅  最后修改于: 2022-03-11 14:49:04.655000             🧑  作者: Mango
...
Rectangle r = GetTextBounds(textBox1, 2, 10);
Panel panel = new Panel
{
Bounds = r,
BorderStyle = BorderStyle.FixedSingle,
};
this.Controls.Add(panel);
panel.Show();
panel.BringToFront();
...