예제 #1
0
 private void ConnectionCompleted()
 {
     _mainPresenter = new MainPresenter(new MainControl(), ShowVideoControl);
     LoadMainView(_mainPresenter.GetView());
     _mainPresenter.Run();
 }
예제 #2
0
파일: Program.cs 프로젝트: levibrian/swjc
        public async Task Run(CancellationToken cancellationToken)
        {
            cancellationToken.ThrowIfCancellationRequested();

            await mainPresenter.Run(cancellationToken);
        }