WinForm 如何使用 Label 控件插入水平线
在 WinForm 中插入水平线控件可以使用 Label 控件来实现。可以按照以下步骤进行操作:
- 打开 Visual Studio,在 WinForm 窗体上拖拽一个 Label 控件到所需位置。
 - 设置 Label 控件的 BorderStyle 属性为 FixedSingle,以便显示边框线。
 - 调整 Label 控件的大小和位置,使其成为一条水平线。
 - 可以根据需要设置 Label 控件的颜色、字体等属性,以便与界面其他元素保持一致。
 
代码示例:
private void Form1_Load(object sender, EventArgs e)
{
    Label horizontalLine = new Label();
    horizontalLine.BorderStyle = BorderStyle.FixedSingle;
    horizontalLine.Width = this.Width - 20; // 设置线条宽度
    horizontalLine.Height = 2; // 设置线条高度
    horizontalLine.Left = 10; // 设置线条左边距
    horizontalLine.Top = 50; // 设置线条上边距
    this.Controls.Add(horizontalLine); // 将线条添加到窗体控件集合中
}
上述代码在窗体加载时动态创建了一个 Label 控件,设置了其 BorderStyle 属性为 FixedSingle 来显示边框线,然后设置了宽度、高度、位置等属性来调整线条的样式和位置,最后将该控件添加到窗体的控件集合中。
原文地址: https://www.cveoy.top/t/topic/o2SI 著作权归作者所有。请勿转载和采集!