CodeTV.MainForm.SetVideoRefreshTimer C# (CSharp) Method

SetVideoRefreshTimer() public method

public SetVideoRefreshTimer ( ) : void
return void
        public void SetVideoRefreshTimer()
        {
            if (this.currentGraphBuilder != null)
            {
                this.timerVideoRefresh.Stop();
                this.currentGraphBuilder.VideoRefresh();
                this.timerVideoRefresh.Tag = 3;
                this.timerVideoRefresh.Start();
            }
        }
MainForm