SRNicoNico.ViewModels.VideoViewModel.InitializeView C# (CSharp) Méthode

InitializeView() private méthode

private InitializeView ( ) : void
Résultat void
        private async void InitializeView() {

            await DispatcherHelper.UIDispatcher.BeginInvoke(new Action(() => {


                if(IsFullScreen) {

                    FullScreenVideoFlash = new VideoHtml5() { DataContext = this };
                    FullScreenController = new VideoController() { DataContext = this };
                } else {

                    VideoFlash = new VideoHtml5() { DataContext = this };
                    Controller = new VideoController() { DataContext = this };
                }

            }));
        }