1
A
回答
0
好吧,我想我已經找到了一個體面的解決辦法。
// create a pen with a width of 2px (half of it will be blanked out so it will
// essentially be a width of 1px)
Pen pen = new Pen(Color.Blue, 2f);
// build a GraphicsPath with the rectangles
GraphicsPath gp = new GraphicsPath();
gp.AddRectangle(...);
gp.AddRectangle(...);
gp.AddRectangle(...);
// g is our Graphics object
// exclude the region so the path doesn't draw over it
Region reg = new Region(gp);
g.ExcludeClip(reg);
// now draw path, it won't show up inside the excluded clipping region
g.DrawPath(pen, gp);
// clean up
g.ResetClip();
pen.Dispose();
gp.Dispose();
reg.Dispose();
相關問題
- 1. SSRS刪除矩形之間的空間
- 2. 在WPF和Winforms之間共享圖形
- 3. 在線程組之間共享cookie
- 4. 在Java線程之間共享數據
- 5. 在線程之間共享對象
- 6. 在兩個線程之間共享QAxObject?
- 7. 在線程之間共享類屬性
- 8. 在線程之間共享XPObject對象
- 9. C++ - 在線程之間共享數據
- 10. 線程之間的CUDA共享對象
- 11. 線程之間的共享內存
- 12. 片段之間的共享代碼
- 13. 線與矩形之間的交點
- 14. 用shmctl刪除共享內存段
- 15. 線程之間共享指針嗎?
- 16. java之間共享數據線程
- 17. cuda:線程塊之間共享'常量'
- 18. 線程之間共享什麼資源?
- 19. 如何刪除控制器之間的重複共享功能
- 20. 不同片段之間共享數據
- 21. 在類之間共享ListView
- 22. 在EAR之間共享JSP
- 23. 刪除CSS中兩個矩形之間的空白
- 24. 在線程之間共享不帶鎖的線程值C
- 25. 矩形刪除面
- 26. 刪除fillRect矩形
- 27. 時間共享和空間共享algotitms之間的區別
- 28. 鎖類之間的共享
- 29. JVM之間的共享類
- 30. 在刪除共享內存之前從共享內存中分離