public void BtnLoadAudioFile(Label lblAudioFile, ComboBox cbBitsToUse,
                              Label lblRemainingSpace, ComboBox cbUnit)
 {
     viewProcessor.PopulateAudioFile();
     viewProcessor.UpdateAudioFileLabel(lblAudioFile);
     viewProcessor.BitsToUseChanged(cbBitsToUse,
                                    cbUnit, lblRemainingSpace);
 }
Esempio n. 2
0
        public void LoadAudioButton(Label lblAudioName, Button btnSelectAudio,
                                    RadGridView gridView, ComboBox cbBitsToUse, ComboBox cbUnit, Button btnExport, TextBox tbExportPath)
        {
            viewProcessor.PopulateAudioFile();
            viewProcessor.BitsToUseChanged(cbBitsToUse,
                                           cbUnit, null);
            viewProcessor.UpdateAudioFileLabel(lblAudioName);

            viewProcessor.PopulateGrid(gridView, btnExport, cbUnit, null, tbExportPath);
        }