コード例 #1
0
        private void MoveAllToEvent()
        {
            SelectedParticipants.Clear();

            foreach (ParticipantBaseModel participant in AllParticipants)
            {
                SelectedParticipants.Add(participant);
            }

            NotSelectedParticipants.Refresh();
        }
コード例 #2
0
 private void MoveFromEvent(ParticipantBaseModel participant)
 {
     SelectedParticipants.Remove(participant);
     NotSelectedParticipants.Refresh();
 }
コード例 #3
0
 private void MoveToEvent(ParticipantBaseModel participant)
 {
     SelectedParticipants.Add(participant);
     NotSelectedParticipants.Refresh();
 }