Wednesday 25 February 2009

Deselect an Item on SilverLight

Sometime you may find it useful to de-select an Item on ComboBox,
when you try to force a user to pick one from the list.

Here it is the code sample to deselect a selected item on ComboBox in Silverlight.
[Just need to set the selected Index to -1]
ComboBox1.SelectedIndex=-1

Hope you find it useful.

2 comments:

  1. it does not work ; as I put the value = -1 it just do nothing and I cannot select that item anymore . Even though I will select, it will not raise SelectionChange event handler.

    ReplyDelete
  2. answer is in http://silverlight.net/forums/t/93443.aspx

    ReplyDelete