Ejemplo n.º 1
0
        private void RefreshSoundsList()
        {
            var selectedItem = SelectedSound;

            listBoxAllSounds.ClearSelected();
            listBoxAllSounds.Items.Clear();
            listBoxAllSounds.Items.AddRange(soundsLibrary.GetAllSounds().Cast <object>().ToArray());
            if (selectedItem != null)
            {
                listBoxAllSounds.SelectedItem = selectedItem;
            }
        }
Ejemplo n.º 2
0
 void RefreshList()
 {
     listBox1.Items.Clear();
     listBox1.Items.AddRange(soundsLibrary.GetAllSounds().Cast <object>().ToArray());
 }