コード例 #1
0
 public void DeleteSelectedLiterature()
 {
     if (SelectedLiterature != null)
     {
         IKeyManager.Delete(SelectedLiterature);
         Load();
     }
 }
コード例 #2
0
 public void DeleteSelectedValue()
 {
     if (SelectedAttributeChoice != null)
     {
         _iKeyManager.Delete(SelectedAttributeChoice);
         AttributeChoices.Remove(SelectedAttributeChoice);
         AssignPositions();
     }
 }