Beispiel #1
0
 public SpeakerAttributeContainer(SpeakerAttribute a)
 {
     _a = a;
 }
 internal void AttributesRemove(SpeakerAttribute speakerAttribute)
 {
     _RemovedAttributes.Add(speakerAttribute);
     RefreshAttributes();
     Changed = true;
 }
        private void ButtonAddAttributeClick(object sender, RoutedEventArgs e)
        {
            SpeakerAttribute sa = new SpeakerAttribute("", Settings.Default.SpeakerAttributteCategories[0], "");

            SpeakerContainer.AttributesAdd(sa);
        }
 internal void AttributesAdd(SpeakerAttribute sa)
 {
     _AddedAttributes.Add(sa);
     RefreshAttributes();
     Changed = true;
 }