Is there anyway I can include a gif into a message box? This is my current code:
private void GameOver()
{
clock.Stop();
MessageBox.Show(Properties.Resources.lose + "Your time taken is " + duration/1000 + " seconds. Bye Bye", "Game Over");
this.Close();
}
Obviously the "Properties.Resources.lose" doesn't work so I'm not all too sure on where else to put.