[求助VB.NET画图的问题
网上资料:在BeginContainer和EndContainer兩者之間,您對Graphics物件所進行的任何狀態變更都屬於容器,它們並不會覆寫Graphics物件的現有狀態
g = Graphics.FromImage(bmp)
g.TranslateTransform(pb.Width / 2, pb.Height / 2)
g.DrawEllipse(New Pen(color.MediumTurquoise, 1), 0, 0, 2, 2)
g.DrawRectangle(New Pen(color.FromArgb(0, 0, 0)), 0, 0, 100, 100)
g.DrawEllipse(New Pen(Color.Red, 1), 0, 0, 100, 100)
cntnr = g.BeginContainer(rect1, rect2, GraphicsUnit.Pixel)
g.TranslateTransform(20, 20)
g.Clear(BackColor)
g.DrawRectangle(New Pen(Color.FromArgb(255, 255, 255)), 0, 0, 100, 100)
g.EndContainer(cntnr)
g.DrawLine(New Pen(Color.Blue, 1), 0, 0, 200, 200)
既然並不會覆寫Graphics物件的現有狀態,为什么运行后,先前画的矩形和圆都不见了?