30 lines
757 B
C#
30 lines
757 B
C#
using KaraokePlayer.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace KaraokePlayer
|
|
{
|
|
public partial class SongInfoForm : Form
|
|
{
|
|
public SongInfoForm()
|
|
{
|
|
InitializeComponent();
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.WindowState = FormWindowState.Maximized;
|
|
this.ShowInTaskbar = false;
|
|
}
|
|
|
|
public void Update(ISong song)
|
|
{
|
|
previewLabel.Text = "Up Next:" + "\r\n\r\n" + song.Artist + "\r\n\r\n\r\n" + song.Title;
|
|
}
|
|
}
|
|
}
|