Exemplo n.º 1
0
        public PreferencesDialog(GRemoteDialog gRemote)
        {
            this.gRemote = gRemote;
            InitializeComponent();

            ffmpegBox.Text = gRemote.FFmpeg.Path;
            formatBox.SelectedIndex = 0;
        }
Exemplo n.º 2
0
 public CaptureArea(GRemoteDialog gRemote)
 {
     this.gRemote = gRemote;
     InitializeComponent();
 }
Exemplo n.º 3
0
 public ClientSession(GRemoteDialog gRemote, String address, int port)
 {
     this.gRemote = gRemote;
     this.address = address;
     this.port = port;
     this.screen = gRemote.VideoPreview;
 }