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.
フォームがあります。そのフォームのセクションを別のフォームに表示するだけです。私はそれが機能的か何かになりたくありません。基本的には絵にしたいだけです。それは可能ですか?もしそうなら、どのように?
好き
display = new display(form, new rectangle(X1, X2, Y1, Y2));
それは可能ですか?
はい、できます:
Bitmap bmp = new Bitmap(myWidth, myHeight); myForm.DrawToBitmap(bmp, new Rectangle(x, y, bmp.Width, bmp.Height));
そして、このビットマップを他のフォームに渡します。