сохранение фокуса выделенного элемента ListView

Общие вопросы, не зависящие от языка реализации.

Модераторы: Duncon, Hawk, Romeo, Eugie

Ответить
123456789igor
Сообщения: 7
Зарегистрирован: 27 фев 2013, 23:03

10 май 2013, 19:48

Есть следующий код. В listview добавляются процессы. Данный метод вызывается каждые 3 секунды с помощью таймера. Как сделать так, что бы после обновления фокус оставался на выделенном элементе, если он ещё есть и положение скролла сохранялось? Все подобные темы пересмотрел но так и не получилось решить проблему.

Код: Выделить всё

private void UpdateProcessList()
        {
            listView1.Items.Clear();
            foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses())
            {
                try
                {
                    int index = listView1.Items.Add(p.ProcessName).Index;
                    listView1.Items[index].SubItems.Add(p.Id.ToString());
                    listView1.Items[index].SubItems.Add(p.StartTime.ToShortTimeString());
                    long temp = p.WorkingSet64 / 1024;
                    listView1.Items[index].SubItems.Add(temp.ToString()+" КБ");
                }
                catch { }
            }
        }
Eugie
Сообщения: 707
Зарегистрирован: 17 фев 2004, 23:59
Откуда: SPb

11 май 2013, 01:17

1. Добавьте обработчик события ListView.SelectedIndexChanged, в нем запоминайте текущее знечение свойства SelectedIndices:

Код: Выделить всё

        // статическая переменная 
	static ListView.SelectedIndexCollection fSelIndices;

        //...
	private void listView1_SelectedIndexChanged_UsingItems(
		object sender, System.EventArgs e)
	{

		fSelIndices = this.listView1.SelectedIndices;
                //...
	}
2. В UpdateProcessList добавьте код, восстанавливающий выбор элементов списка:

Код: Выделить всё

	private void UpdateProcessList()
        {
		// ...
		foreach (int index in fSelIndices)
			listView1.Items[index].Selected = true;
                // необходимо выбрать сам ListView, чтобы сработало выделение элементов (либо задать свойство HideSelection=false)
		listView1.Select();
		
        }
3. По аналогичной схеме можно сохранять и восcтанавливать позицию прокрутки.
Nosebubre
Сообщения: 0
Зарегистрирован: 10 сен 2013, 12:50
Откуда: Korea North
Контактная информация:

08 ноя 2013, 08:41

Arizona residents took cows as well as drove 100s quite possibly many them all skincare products fertile nations.Amber jewelry is incredible and very person who enjoys wearing something amazing should own a piece.Leo horoscope:A good week lies ahead of you on Ralph Lauren Polo Outlet all fronts.It is best to use cold water for this purpose.People assume they know how to do things.

Philips fidelio is crafted for travel and fit not only to ipad but also to iphones and ipods.The phone numbers area code should match the ralph laurens address.It all masculine and strong and perfect for your husband or dad.Measuring from where the bottom of the liner will be on completion, hold the tape while the measurement is taken.Was this young pregnant girl who was going to give her baby up for adoption and the parents didn want the baby because it had health issues.
Basra sea shanties are well-Known throughout iraq.Worse still, don't leave it under your mattress depreciating in value!Net insider shares purchased over the last six months at 991.Also, with some of ralph lauren these shares trading at very high valuations, i would not be surprised to see management announce capital raising share offerings, as axas recently has.Which everyone said i'd never be able to get rid of!
What your ex boyfriend or ex girlfriend is feeling right nowafter a break up things with you are awkward-Dead awkward.As a luxury brand blancpain has with other luxury brands as a testament.A man cod be dessed p in the shapest tx money cod by bt sti be ndedessed if he doesn't have his shoes on.I know that every home and every Cheap Ralph Lauren Polo budget is different, which is why this site can ensure we can design a ralph laurenalized photovoltaic solar panel system to suit the unique needs and situation of each individual ralph lauren for innovative energy bill savings.Its not like we don't have the ralph lauren, we transplant organs and give ralph lauren artificial limbs.
"He'd always respond with a smile"Mac and cheese.The first step to retaining customers is to keep your word.You have to ask yourself"What do you want to accomplish in your life"And not"What do others want you to accomplish".If your ralph lauren is fuel injected and made in the past 10 to 15 Cheap Ralph Lauren Outlet UK years or so, odds are you won't need to pump the gas at all, because there's a computer chip running the injectors which finds an optimum gas flow for starting for you.鈥he Ralph Lauren:Music plays a crucial role in the success of any kind of party celebrations.
And to the astonishing results of the early, pioneer, school, spiritual recovery program.Enjoy plenty of great restaurants within a few miles, and world class shopping at gurnee mills or northbrook and westfield shopping centers.This is not a regular baby doll, but only consists of a doll head, designed for make up application or hairstyling.Pregnant women often crave for sweet or salty food.After about five years, the economic windfall they anticipated failed to materialize, and they left seeking greener pastures.
Ответить