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.
リッチテキストボックスの背景色をフォームのデフォルトの背景色と同じに設定する方法を誰かが知っていますか?
RichTextBox1.BackColor = Form1.BackColor
または
RichTextBox1.BackColor = System.Drawing.SystemColors.Control
フォームクラスコード内に背景色を設定している場合は、次のように記述できます。
rtb.BackColor = Me.BackColor