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.
フォームの OnLoad で、背景画像を設定するとフォームが点滅するのはなぜですか?
描き直し中だからです。再描画は、最初に背景をクリアしてから、その上に画像を描画します。これにより、ちらつきが発生します。
この問題を解消するために、フォームでダブル バッファリングを有効にすることができます。
this.DoubleBuffered = true;