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.
在 Windows 窗体 (Vb.net) 中,如何在没有实例的情况下访问属性(新)?
Form1.Property = "" ??? 属性减速不是静态的吗?这种减速方式叫什么?
虽然您无法访问 Class1.Property!谢谢
VB.Net 做了一些魔术,让您可以假装表单没有实例。
它创建一个隐藏的共享实例,并将对实例方法(例如Form1.Show())的静态调用转换为对该共享实例的实例调用。
Form1.Show()
这样做是为了与 VB6 兼容,应该避免。