好吧,我尝试创建彼此相邻的标签,但根据用户输入,它可以与旁边的标签重叠。我想知道他们的某种属性是否不会让标签重叠。我尝试AutoSize = true
了方法,但我没有运气
信息是从 xml 文件中读取的 - 它们水平重叠
if (textReader.Name == "test")
{
textReader.Read();
XmlNodeType nType = textReader.NodeType;
if (nType == XmlNodeType.Text)
{
Label l = new Label();
System.Drawing.Point l1 = new System.Drawing.Point(15, 48 + a);
l.Location = l1;
l.Text = textReader.Value.ToString();
l.Size = new Size(200, 50);
tabPage2.Controls.Add(l);
a += 35;
}
}