-1
A
回答
1
從here: -
[Rectangle r = new Rectangle(0, 0, pictureBox1.Width, pictureBox1.Height);
System.Drawing.Drawing2D.GraphicsPath gp = new System.Drawing.Drawing2D.GraphicsPath();
int d = 50;
gp.AddArc(r.X, r.Y, d, d, 180, 90);
gp.AddArc(r.X + r.Width - d, r.Y, d, d, 270, 90);
gp.AddArc(r.X + r.Width - d, r.Y + r.Height - d, d, d, 0, 90);
gp.AddArc(r.X, r.Y + r.Height - d, d, d, 90, 90);
pictureBox1.Region = new Region(gp);][2]
相關問題
- 1. 將BMP文件加載到圖片盒
- 2. 將圖片加載到圖片之前
- 3. 將一些圖片應用到as3中的圓形圖形
- 4. OpenCV灰盒子 - 不加載圖片?
- 5. 在圖片上添加圓形div
- 6. Lazy將圖片加載到圖庫中
- 7. 將大圖片加載到位圖中?
- 8. UICollectionViewCell - 圓下載圖片
- 9. c#從URL加載圖像到圖片盒
- 10. 切片盒,鏈接圖片
- 11. 谷歌地圖片段圓形視圖
- 12. 將圖片上傳到WordPress後無法加載圖片
- 13. 加載圖片
- 14. 加載圖片
- 15. 如何從傳單/地圖盒地圖切片中刪除圓形覆蓋圖?
- 16. 將圖片添加到圖片箱中的圖片列表
- 17. 圖片加載到UIView
- 18. 加載圖片到ImageView的
- 19. 如何將圖片加載到smalltalk中
- 20. AS3 LoaderMax:將圖片加載到數組?
- 21. 將圖片上載到html
- 22. 如何加載圖像形式目錄到圖片框刪除圖片文件加載到圖片框後,再次下一張圖片?
- 23. 圖片加載像谷歌圖片PHP
- 24. AS3:在加載圖片返回圖片
- 25. 如何將圖片加載到Xamarin形式的按鈕中PCL?
- 26. 以形式加載很多圖片
- 27. Android:加載圖片
- 28. JApplets:加載圖片
- 29. 預加載圖片
- 30. JQuery圖片加載
檢查這 - http://stackoverflow.com/questions/7731855/rounded-edges-in-picturebox-c-sharp可能重複 – DevT