public void ShowBackground(List <Background> backgrounds)
        {
            string html = HTML.Background(backgrounds, Session.Preferences.PlayerViewTextSize);

            set_html(html);

            Show();
        }
Exemple #2
0
 public void ShowBackground(List <Background> backgrounds)
 {
     this.set_html(HTML.Background(backgrounds, PlayerViewForm.DisplaySize));
     base.Show();
 }
Exemple #3
0
 public void ShowBackground(Background background)
 {
     this.set_html(HTML.Background(background, PlayerViewForm.DisplaySize));
     base.Show();
 }