Ejemplo n.º 1
0
 public SessionForm(LunaConnectionBase luna)
 {
     InitializeComponent();
     LoadSettings();
     this.luna = luna;
     previewControl1.OnScreenCaptured += new Action <Vector4[], int, int, int>(PreviewControl1_OnScreenCaptured);
     switchTo(0);
 }
Ejemplo n.º 2
0
 public SessionForm(LunaConnectionBase luna)
 {
     InitializeComponent();
     LoadSettings();
     this.luna = luna;
     previewControl1.OnScreenCaptured += new Action<Vector4[], int, int, int>(PreviewControl1_OnScreenCaptured);
     switchTo(0);
 }
Ejemplo n.º 3
0
 public void Start(LunaConnectionBase luna)
 {
     if (thread == null)
     {
         this.luna = luna;
         thread    = new Thread(ThreadFunction);
         thread.Start();
     }
 }
Ejemplo n.º 4
0
 public void Start(LunaConnectionBase luna)
 {
     if (thread == null) {
         this.luna = luna;
         thread = new Thread(ThreadFunction);
         thread.Start();
     }
 }