vote up 1 vote down star

In a ListView control, the focus is on some Item within that control - that is, the control maintains its own internal notion of what is in focus, which can be retrieved using the FocusedItem property.

I would like no items to be focused. In other words, I want the FocusedItem property to set to null. Any idea how I might accomplish this?

flag
Can you elaborate on your question? I don't really understand it. – Charlie Somerville May 2 at 0:38
Tried to clean this up a bit... unfortunately, it's still kinda bogus - there's no selectedFocus method or member that i can find... Perhaps he means FocusedItem? – Shog9 May 2 at 0:48
Also see stackoverflow.com/questions/276986/…. – ESRogs May 2 at 1:21

2 Answers

vote up 2 vote down check

To expand on Vanuan's answer:

if (listView1.FocusedItem != null)
{
    listView1.FocusedItem.Focused = false;
}

Something tells me that you also want to un-select the item. So, you probably want to do this as well:

if (listView1.SelectedItems.Count != 0)
{
    listView1.SelectedItems[0].Selected = false;
}
link|flag
The first one is working. Thank you very much bro. – Bad Boy May 2 at 1:54
vote up 3 vote down

I think, it is

listView1.FocusedItem.Focused=false;

Make sure that listView1.FocusedItem is not null.

(Thanks to brianpeiris for expanding)

link|flag
It is giving unhandeled exception. – Bad Boy May 2 at 1:22
What exception? – Vanuan May 2 at 1:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.