Advertisement
HaLo2FrEeEk

OnPaintBackground and OnPaint overrides

Jan 2nd, 2011
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.30 KB | None | 0 0
  1. protected override void OnPaintBackground(PaintEventArgs e)
  2. {
  3.     // do nothing
  4. }
  5.  
  6. protected override void OnPaint(PaintEventArgs e)
  7. {
  8.     Color c = Color.FromArgb((int)(Opacity * 255), this.BackColor);
  9.     e.Graphics.FillRectangle(new SolidBrush(c), this.ClientRectangle);
  10.     base.OnPaint(e);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement