Exemplo n.º 1
0
 private void PlaySongMenuItem(object sender, RoutedEventArgs e)
 {
     if (getClient() != null)
     {
         FrmPlaySong frmRChat = new FrmPlaySong(getClient());
         frmRChat.ShowDialog();
         frmRChat.Focus();
     }
 }
Exemplo n.º 2
0
 private void PlaySongMenuItem(object sender, RoutedEventArgs e)
 {
     if (getClient() != null)
     {
         FrmPlaySong frmPlaySong = new FrmPlaySong(getClient());
         frmPlaySong.Text = SetWindowTitle("Play Song", getClient());
         frmPlaySong.ShowDialog();
         frmPlaySong.Focus();
     }
 }