public ColorControl()
 {
     InitializeComponent();
     proxy = new SocketProxy(50001);
     List<string> animations = proxy.call<List<string>>("GetAnimations");
     this.comboBox1.Items.AddRange(animations.ToArray<object>());
     this.trackBar1.Scroll += new System.EventHandler(this.updateColorTrackBar);
     this.trackBar2.Scroll += new System.EventHandler(this.updateColorTrackBar);
     this.trackBar3.Scroll += new System.EventHandler(this.updateColorTrackBar);
     colorRadio_CheckedChanged(null, null);
 }