المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Ctrl+A short key in listview Box



C# Programming
05-04-2009, 01:13 PM
How can i select all the items in list box by pressing Ctrl+A
i wrote the code to accept keys but i don't know how to highlite all the item in list view.


if(e.Control == true & e.KeyCode == Keys.A)
{
listView1.....??????
}


A S E L A