コード例 #1
0
ファイル: PreferencesDialog.cs プロジェクト: krisives/GRemote
        public PreferencesDialog(GRemoteDialog gRemote)
        {
            this.gRemote = gRemote;
            InitializeComponent();

            ffmpegBox.Text = gRemote.FFmpeg.Path;
            formatBox.SelectedIndex = 0;
        }
コード例 #2
0
ファイル: CaptureArea.cs プロジェクト: krisives/GRemote
 public CaptureArea(GRemoteDialog gRemote)
 {
     this.gRemote = gRemote;
     InitializeComponent();
 }
コード例 #3
0
ファイル: ClientSession.cs プロジェクト: krisives/GRemote
 public ClientSession(GRemoteDialog gRemote, String address, int port)
 {
     this.gRemote = gRemote;
     this.address = address;
     this.port = port;
     this.screen = gRemote.VideoPreview;
 }