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