AnimatGuiCtrls.Video.AviPlayer.AviPlayer C# (CSharp) Method

AviPlayer() public method

Create a new AVI Player
public AviPlayer ( VideoStream videoStream, PictureBox picDisplay, Control ctlFrameIndexFeedback ) : System
videoStream VideoStream Video stream to play
picDisplay System.Windows.Forms.PictureBox PictureBox to display the video
ctlFrameIndexFeedback System.Windows.Forms.Control Optional Label to show the current frame index
return System
        public AviPlayer(VideoStream videoStream, PictureBox picDisplay, Control ctlFrameIndexFeedback)
        {
            this.videoStream = videoStream;
            this.picDisplay = picDisplay;
            this.ctlFrameIndexFeedback = ctlFrameIndexFeedback;
            this.isRunning = false;
        }