Example #1
0
 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);
     }
 }
Example #2
0
 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);
     }
 }