G
Guest
I would like to create a picturebox or panel that I can draw a graph on it. I did it by creating a class which inherits Panel (I tried PictureBox as well) and create a graphics in it by
Private g as Graphics = Me.CreateGraphic
Although its syntax is correct, it give me System.NotSupportedException when I run it. How can I soft the problem?
Private g as Graphics = Me.CreateGraphic
Although its syntax is correct, it give me System.NotSupportedException when I run it. How can I soft the problem?