source: other-projects/fft-ddr/open-day-2015/trunk/FFTDDR/BeatPicturebox.cs@ 29911

Last change on this file since 29911 was 29911, checked in by cct9, 9 years ago

Reworked version of the project undertaken for open day 2015

File size: 503 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7using System.Windows.Forms;
8
9namespace FFTDDR
10{
11 class BeatPicturebox : PictureBox
12 {
13 public BeatPicturebox()
14 {
15 this.SetStyle(ControlStyles.UserPaint, true);
16 this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
17 this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
18
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.