Esempio n. 1
0
 public void RefreshPlay()
 {
     if (mVS != null)
     {
         mVS.RefreshPlay();
     }
 }
Esempio n. 2
0
 public void RefreshPlay()
 {
     if (mVideoSource != null)
     {
         mVideoSource.RefreshPlay();
     }
 }
Esempio n. 3
0
        public void RefreshPlay()
        {
            IVideoSource vs = GetVideoSource();

            if (vs != null)
            {
                vs.RefreshPlay();
            }
        }
Esempio n. 4
0
        public void RefreshPlay()
        {
            PlayBoxCtrl[] boxList = mBoxManager.BoxList;
            if (boxList != null)
            {
                foreach (PlayBoxCtrl playBox in boxList)
                {
                    CFuncNode node = playBox.LinkObj as CFuncNode;
                    if (node != null)
                    {
                        IVideoSource vs = node.ExtObj as IVideoSource;
                        if (vs != null)
                        {
                            vs.RefreshPlay();
                        }
                    }
                }

                if (OnRefreshPlay != null)
                {
                    OnRefreshPlay(PlayBoxs);
                }
            }
        }