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個のクラスがあり、1つのtextBoxに簡単にアクセスできるとします。グローバル整数を作成したい場合は、静的を使用しました。コントロールでそのようなことをする方法は?ありがとう
静的クラスを定義し、そのクラスの静的メンバーのようにそのコントロールを定義します
public static class SharedResources { public static UserControl mySharedControl = ... }
コード内でこのコントロールを使用した後、
SharedResources.mySharedControl
フィールドの代わりに静的プロパティを自然に定義することもできます。