Beispiel #1
0
 void Form3_Resize(object sender, System.EventArgs e)
 {
     this.timer1.Enabled = false;
     this.panel1.Width = this.Width;
     this.panel1.Height = this.Height;
     aPlotter = new WocketsScalablePlotter(this.panel1, CurrentWockets._Controller);
     isResized = true;
     this.timer1.Enabled = true;
 }
Beispiel #2
0
 public Form3()
 {
     InitializeComponent();
     aPlotter = new WocketsScalablePlotter(this.panel1, CurrentWockets._Controller);
 }