Tagged Questions

1
vote
1answer
260 views

Weird behavior of LinearGradientBrush

I want to fill a Rectangle with a LinearGradientBrush. With some Rectangles I get some strange behavior. Example: Rectangle rect = new Rectangle( 20, 20, 20, 34 ); LinearGradientMode mode = ...
1
vote
3answers
1k views

Disposing a static brush

I'm writing a biorhythm app. To test it i have a form with a Button and a PictureBox. When I click on the button i do myPictureBox.Image = GetBiorhythm2(); Which runs ok for the first time, but on ...