public MyPlayerView (MyVideoPlayer Parent)
		{
			this.BackgroundColor = UIColor.Clear;

			this._MoviePlayer = new MyMPMoviePlayerController (Parent);	

			// add to subview
			this.AddSubview (this._MoviePlayer.View);
		}
Exemple #2
0
        public MyPlayerView(MyVideoPlayer Parent)
        {
            this.BackgroundColor = UIColor.Clear;

            this._MoviePlayer = new MyMPMoviePlayerController(Parent);

            // add to subview
            this.AddSubview(this._MoviePlayer.View);
        }