Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've a winform and I'm trying to bind some elements at page load method. After that

listBox1_SelectedIndexChanged event fires automatically. Why it is happening?

Thanks in advance, Nagu

share|improve this question

2 Answers

I assume that this is because your list box begins life with no items in it (so its SelectedIndex property is -1). As soon as it's populated, its SelectedIndex property changes to 0 (to select the first item in the now populated list box) and then SelectedIndexChanged event is now fired.

share|improve this answer
This is correct. +1 – sindre j Oct 27 '09 at 7:43
+1 for answering the why – Michael Buen Oct 27 '09 at 7:52
I'm sorry I didnt get your point. Can you give me a simple example code line? – Nagu Oct 27 '09 at 8:08
1  
Nagu, not everything can be explained with a line of code. – Henk Holterman Oct 27 '09 at 8:33

disable the event prior to binding:

listBox1.SelectedIndexChanged -= listBox1_SelectedIndexChanged;

re-enable after binding:

listBox1.SelectedIndexChanged += listBox1_SelectedIndexChanged;

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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