private void buttonStop_Click(object sender, EventArgs e) { try { SoundCardHandler.Stop(); } catch (Exception) { //Jak się nie da zatrzymać to nic nie rób } }
private void buttonShowHead_Click(object sender, EventArgs e) { try { labelHeaders.Text = SoundCardHandler.GetHeadersAndDetails(); } catch (Exception) { MessageBox.Show(@"Nie można wczytać załadowanego pliku!", @"Uwaga", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); } }
private void buttonPlay_Click(object sender, EventArgs e) { try { SoundCardHandler.Play(); } catch (Exception) { MessageBox.Show(@"Nie można wczytać załadowanego pliku!", @"Uwaga", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); } }
private void checkBoxEcho_CheckedChanged(object sender, EventArgs e) { SoundCardHandler.MakeEcho(this, checkBoxEcho); }