我想在 C# 的工具提示中添加一条水平分隔线。在 HTML 中是<hr>
. C# 中的工具提示是什么?希望没有覆盖是可能的。
ToolTip toolTip1 = new ToolTip();
toolTip1.AutoPopDelay = 5000;
toolTip1.InitialDelay = 0;
toolTip1.ReshowDelay = 500;
toolTip1.ShowAlways = true;
toolTip1.SetToolTip(this, "line1\r\n<hr>\r\nline2");