Example #1
0
        /// <summary>
        /// Disposes the selected phone line and removes it from the collection.
        /// </summary>
        public void RemovePhoneLine()
        {
            if (SelectedLine == null)
            {
                return;
            }

            ClosePhoneLine(SelectedLine);
            PhoneLines.Remove(SelectedLine);
        }