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.
就像标题说的:P 假设我有 10 个课程,我可以轻松访问一个文本框。如果我想制作一个全局整数,我使用了静态的。如何用控制做这样的事情?谢谢
定义一个静态类 定义该控件,就像该类的静态成员一样
public static class SharedResources { public static UserControl mySharedControl = ... }
在代码中使用此控件后,例如
SharedResources.mySharedControl
也可以自然地定义静态属性而不是字段。