vote up 0 vote down star

Hi

I have a WPF listbox, with some custom item inside.

When user wants to deleta on of the item, what happens is that he has to reselect manually in the list rigth after delete because the list "seems" to lose focus OR no selected item exists.

Any idea ?

Thanks Jonathan

flag

1 Answer

vote up 1 vote down

We always handle this by setting the selected item in code. If it was the last item in the list, make the selected index the last item. Otherwise we make it the one after the one that was deleted.

if (SnippetsList.Items.Count > index) 
    SnippetsList.SelectedIndex = index;
else 
    SnippetsList.SelectedIndex = SnippetsList.Items.Count - 1;
link|flag
thank you.However i think i have some issue implementing this. The reason is that i perform delete using pure XAML and i don't know where to use the code... (i use caliburn) – Jonathan Feb 9 at 7:56

Your Answer

Get an OpenID
or

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