Reputation: 187
In the old method in VB.net this was used to lock a picture box does anyone know the new method in VS 2012?
PictureBox.locked = falese
Upvotes: 0
Views: 1214
Reputation: 26454
It's the same, so you would set PictureBox.Locked = False
in VS 2012 designer.
See an article on MSDN for more info.
Here is a screenshot from VS 2012, where I locked a PictureBox in brand new WinApp project.
Upvotes: 1