private void btnGetValue_Click(object sender, EventArgs e) { try { BASSAttribute attri = DropdownBoxHelper.GetEnumFromComboBox <BASSAttribute>(comboBoxBASSAttribute); txtInfo.Text = wavePlayer1.GetChannelAttribute(attri).ToString(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnSetValue_Click(object sender, EventArgs e) { try { BASSAttribute attri = DropdownBoxHelper.GetEnumFromComboBox <BASSAttribute>(comboBoxBASSAttribute); float value = (float)(numAttriValue.Value / 100); wavePlayer1.SetChannelAttribute(attri, value); } catch (Exception ex) { MessageBox.Show(ex.Message); } }