Exemple #1
0
        private void showDiagramm()
        {
            ListViewItem item = CharListView.SelectedItems[0];
            string       type = CharBox.SelectedItem.ToString();

            if (_profile.SpecififcSoundTypes.Contains(type))
            {
                _soundEditor.ShowAmplitudes(_profile.GetSpecificSoundMedia(type, item.Name), type + "\\" + item.Name);
            }
            else
            {
                _soundEditor.ShowAmplitudes(_profile.GetSoundMedia(item.Name), item.Name);
            }
        }