public void Handle(SuccessfulLoginEvent message)
        {
            StartUpWindow window = new StartUpWindow(service, player);

            window.Show();
            this.Close();
        }
        private void OnLoginSuccess(object sender, EventArgs e)
        {
            StartUpWindow window = new StartUpWindow(service, player);

            window.Show();
            this.Close();
        }