Inherited Form comes with no editing option at all. Use C # and VS 2017

3

When I create Form2 Inherited from Form1, I can not edit anything on it. Of course the padlock on the upper left has something to do, but how can I solve this situation?

Follow the image for the best understanding. Thank you!

    
asked by anonymous 17.03.2017 / 05:15

3 answers

1

In% with parent, go to the control you want to change, in the form property, put modifiers .

    
18.03.2017 / 23:12
1

Lock Controls has been enabled on your form .

Enabling this option, all controls have been marked with this carding, indicating that can not move or resize them .

You can lock / unlock controls individually, or all simultaneously.

Individual activation / deactivation

  • Select a control, and on your property, change the Locked option.

General activation / deactivation

  • To enable / disable all controls use: Menu Format > Lock Controls
29.03.2017 / 16:42
-2

Right-click on the form - > Lock Controls

    
17.03.2017 / 10:41