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.
richtextbox他のクラスで呼び出して、それを変更できる静的メソッドを定義するために、フォーム(C#)で静的を作成するにはどうすればよいですか?
richtextbox
3つのステップで:
Modifiers
Public
フォームの静的インスタンスを作成します。
public Form1() { InitializeComponent(); _form1inc = this; } public static Form1 _form1inc;
他のクラスで使用する
Form1._form1inc.richTextBox1