Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 VB.net 中的旧方法中,这是用来锁定图片框的,有人知道 VS 2012 中的新方法吗?
PictureBox.locked = falese
它是一样的,所以你将PictureBox.Locked = False在 VS 2012 设计器中设置。
PictureBox.Locked = False
有关详细信息,请参阅MSDN 上的文章。
这是 VS 2012 的截图,我在全新的 WinApp 项目中锁定了一个 PictureBox。