| | |
Invalidate picturebox with rectangle on
Please support our C# advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Mar 2008
Posts: 7
Reputation:
Solved Threads: 0
Hello.
I have a simple picturebox where there is a image loaded in
Im drawing a rectangle on the picturebox and when I press a button I want to invalidate it (remove the rectangle), but it doesnt seem to work
The rectangle is drawn fine and the image loads up to, but when I press my button nothing happens
Here is the code im using:
I have a simple picturebox where there is a image loaded in
Im drawing a rectangle on the picturebox and when I press a button I want to invalidate it (remove the rectangle), but it doesnt seem to work
The rectangle is drawn fine and the image loads up to, but when I press my button nothing happens
Here is the code im using:
C# Syntax (Toggle Plain Text)
private void drawOnPic() { // Attach grapich to picturebox Graphics g = Graphics.FromImage(pictureBox1.Image); // Create a new pen that we shall use for drawing the line Pen PenStyle = new Pen(Color.Red, 1); // Draw a 50x50 pixels rectangle (x, y, width, hight) g.DrawRectangle(PenStyle, 20, 20, 50, 50); } private void button1_Click(object sender, EventArgs e) { pictureBox1.Invalidate(); } private void Form1_Load(object sender, EventArgs e) { drawOnPic(); }
![]() |
Other Threads in the C# Forum
- Previous Thread: placing combo & textbox on top of datagrid in C#
- Next Thread: Problem with arrays and list
| Thread Tools | Search this Thread |
.net 2007 access algorithm appportability array barchart bitmap box broadcast c# camera check checkbox client combobox control conversion cs4 csharp custom database datagrid datagridview dataset date datetime degrees development draganddrop drawing encryption enum event eventcloseformc# excel file form format forms function gdi+ handler httpwebrequest image index input install java keypress label list listbox listener listview load mandelbrot math mouseclick mysql operator path photoshop picturebox pixelinversion post programming radians regex remote remoting resolved. richtextbox search security server sleep socket sql statistics stream string table text textbox thread time timer update usercontrol validation view visual visualstudio webbrowser windows winforms wordautomation wpf xml





