Beispiel #1
0
 public void ShowRepostPopup(string origin, VideoDetail video)
 {
     if (_repostPopup == null)
     {
         _repostPopup = new RepostPopup();
     }
     _repostPopup.ShowPopup();
     _repostPopup.Init(origin, video);
 }
Beispiel #2
0
 public void ShowRepostPopup(string origin, BangumiDetail bangumi, Episode part)
 {
     if (_repostPopup == null)
     {
         _repostPopup = new RepostPopup();
     }
     _repostPopup.ShowPopup();
     _repostPopup.Init(origin, bangumi, part);
 }
Beispiel #3
0
 public void ShowRepostPopup(string origin, Topic topic)
 {
     if (_repostPopup == null)
     {
         _repostPopup = new RepostPopup();
     }
     _repostPopup.ShowPopup();
     _repostPopup.Init(origin, topic);
 }