private void btnSearchSHOUTcast_Click(object sender, EventArgs e)
 {
   SearchSHOUTcast dlg = new SearchSHOUTcast();
   dlg.ShowDialog(this);
   if (dlg.Station == null) return;
   edStreamURL.Text = dlg.Station.url;
   nudStreamBitrate.Value = dlg.Station.bitrate;
 }
        private void btnSearchSHOUTcast_Click(object sender, EventArgs e)
        {
            SearchSHOUTcast dlg = new SearchSHOUTcast();

            dlg.ShowDialog(this);
            if (dlg.Station == null)
            {
                return;
            }
            edStreamURL.Text       = dlg.Station.url;
            nudStreamBitrate.Value = dlg.Station.bitrate;
        }