Remove() public static method

public static Remove ( int index ) : void
index int
return void
Esempio n. 1
0
        private void Main_PlayList_RightClick_Delete_One_Click(object sender, EventArgs e)
        {
            var index = Main_PlayList.SelectedIndices[0];

            Core.Remove(index);
            if (Main_PlayList.SelectedIndices.Count != 0)
            {
                RefreshList(index);
            }
        }