C
C#3y ago
Nesanco

❔ overlap labels

how do i allow labels to overlap eachother?
5 Replies
Nesanco
NesancoOP3y ago
looks like that rn
Label uline = new Label();
uline.Visible = true;
uline.BackColor = Color.Transparent;
uline.Location = new Point(x, 400);
uline.Font = new Font("Arial", 15);
uline.Text = "____";
this.Controls.Add(uline);
Label uline = new Label();
uline.Visible = true;
uline.BackColor = Color.Transparent;
uline.Location = new Point(x, 400);
uline.Font = new Font("Arial", 15);
uline.Text = "____";
this.Controls.Add(uline);
Tvde1
Tvde13y ago
are you trying to underline text?
Accord
Accord3y ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.
Nesanco
NesancoOP3y ago
no im trying to overlap labels
Accord
Accord3y ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.

Did you find this page helpful?