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.
ピクチャボックスをあるパネルからウィンドウフォームに移動し、次に別のパネルに移動しようとしています。
.left と .top を操作してピクチャ ボックスを移動させることができますが、パネルの上部に到達すると、ピクチャ ボックスがボードに消えてしまいます。パネルを離れてメインフォームに移動し、パネル2に入るにはどうすればスムーズですか?
私はこの問題に遭遇しましたが、解決策があります。コードは次のとおりです。
Panel2.Controls.Add(Picturebox) 'This "Picks Up" the Picturebox from Panel1 and drops it on Panel2
また、複数のピクチャボックスがある場合は、次のようにします。
For Each pctrbox in Panel1.Controls Panel2.Controls.Add(pctrbox) Next