vote up 0 vote down star

ListBox's behavior is that the first item is selected automatically, how can I avoid that??

Note: I want to do this with pure xaml, if you have any code-behind ideas then please don't bother yourself.

flag

i think u meant, that when u move focus to listbox, 1st item is always selected ? (highlighted..and if u press down, the 2nd item gets the focus?) – Madi D. Sep 9 at 10:19
1) for the one who marked my question as duplicate, you didn't understand the question, i am the one who posted the duplicate as well. 2) @Madi, When the listbox is rendered, its first item is selected automatically, i want to disable this feature. – Shimmy Sep 9 at 10:30
hmm.. you can use FocusManager to focus into a certain item/element..(all in xaml)... however i cant figure out how to make it focus on nothing :D – Madi D. Sep 9 at 10:34

5 Answers

vote up 1 vote down check

Well i tried this using FocusManager.FocusedElement .. and made the intial focus to
listbox itself.. so it has the focus..but no element is selected.. if u press down or tab ..the 1st element of the listbox will be selected...

 < Window
...... 
FocusManager.FocusedElement="{Binding ElementName=listbox2}" >

< ListBox  x:Name="listbox2" HorizontalAlignment="Left" 
  VerticalAlignment="Bottom" Width="117.333" Height="116" 
  Margin="30.667,0,0,30">
	< ListBoxItem > Jim</ ListBoxItem>
	< ListBoxItem > Mark</ ListBoxItem>
	< ListBoxItem> Mandy</ ListBoxItem>

	</ ListBox>
link|flag
vote up 2 vote down

You could set SelectedIndex to -1 :

<ListBox ItemsSource="{Binding MyData}" SelectedIndex="-1"/>

Note: I want to do this with pure xaml, if you have any code-behind ideas then please don't bother yourself.

Unfortunately you can't do everything in XAML... you can usually avoid code-behind, but you still need to write converters, markup extensions or attached properties

link|flag
I was lookin for an answer just like yours. the only tiny problem is it doesn't work. – Shimmy Sep 9 at 10:26
1  
it doesnt work :) – Madi D. Sep 9 at 10:32
+1, you can't do everything in XAML. – sixlettervariables Sep 9 at 18:01
vote up 0 vote down

Is SelectedIndex the property you're looking for ? Or maybe I don't get your point...

link|flag
you got my point, but when i set selectedindex to -1 or alternatively selected item to x:Null, the first item is still selected – Shimmy Sep 9 at 10:32
vote up 0 vote down
<ListBox SelectioMode="Single" SelectedIndex="-1"/>
link|flag
I don't want the selection mode to be Single. – Shimmy Sep 9 at 20:25
vote up 0 vote down

Add a blank item.

link|flag

Your Answer

Get an OpenID
or

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