1
A
回答
5
您可以將一個圖片框中顯示的Image
分配給另一個圖片框。如果您希望從原始圖片框中刪除圖像(以便它不會顯示兩次),您可以將其Image
屬性設置爲null
(或者,當然,您可以指定您選擇的任何其他圖像)。像這樣:
//Assign the image in one picture box to another picture box
mySecondPicBox.Image = myFirstPicBox.Image;
//Clear the image from the original picture box
myFirstPicBox.Image = null;
如果你想交換兩個圖片框顯示的圖像,你需要暫時存儲在一個變量的圖片對象之一。所以你可以使用非常類似的代碼,稍作修改:
//Temporarily store the picture currently displayed in the second picture box
Image secondImage = mySecondPicBox.Image;
//Assign the image from the first picture box to the second picture box
mySecondPicBox.Image = myFirstPicBox.Image;
//Assign the image from the second picture box to the first picture box
myFirstPicBox.Image = secondImage;
相關問題
- 1. Vb.net將圖片框中的圖片移動到另一個圖片框
- 2. 將圖像從圖片框移動到另一個圖片的另一個圖片盒
- 3. C#從一個圖片框拖放到另一個圖片框
- 4. C#圖片框上的另一個圖片框
- 5. 圖片框在圖片框
- 6. 圖片圖片框
- 7. 在另一個圖片框上透明圖片框
- 8. 結合2個圖片框到一個新的圖片框
- 9. 如何將圖片框動態添加到圖片框陣列
- 10. 控制移動圖片框
- 11. 移動圖片框C#
- 12. 圖片縮放圖片框
- 13. 導入圖片圖片框
- 14. 如果圖片框小於圖片,圖像適合圖片框
- 15. 如果圖片對齊到一邊,將圖片移動到圖片下方
- 16. SQL將圖片下載到圖片框'內存不足'錯誤
- 17. 將圖片框添加到前一個
- 18. 將光標移到圖片框
- 19. 滾動圖片框
- 20. 將圖片添加到運動圖片框
- 21. Android片段 - 從一個視圖移動到另一個視圖?
- 22. 點擊一個圖片框
- 23. 添加圖片從資源到一個圖片框
- 24. 將圖片移動到WPF中的另一幅圖像
- 25. 更改圖片框中的圖片C#
- 26. 圖片位置圖片框的屬性
- 27. C# - 圖片框中的圖片漸變
- 28. 乘圖片框
- 29. 在圖片框
- 30. 圖片/相框