Muhammad Faizan Khan
Muhammad Faizan Khan

Reputation: 10561

Change Z order of the control on edit mode in VS winform

I can easily bring to the front my specific win form control using this code snippet but it only works in runtime not in editor mode.

   lblAttendanceEmpName.BringToFront();

Is there any way avilable that i can arrange the controls order on editor?

Upvotes: 0

Views: 68

Answers (1)

TheGeneral
TheGeneral

Reputation: 81543

If i understand you correctly, it should just be a case of

Rightclick -> Bring to Front

An image for specificity

enter image description here

Upvotes: 1

Related Questions