开发者

ListBox selected index color wpf

开发者 https://www.devze.com 2022-12-18 04:39 出处:网络
I am just starting with WPF and I have this ListBox that displays an attribute from a class I made. I have to programmatically change the selected index, when I do something like:

I am just starting with WPF and I have this ListBox that displays an attribute from a class I made. I have to programmatically change the selected index, when I do something like:

ListBox1.SelectedIndex = 4; 

the SelectedI开发者_开发知识库ndex is changed and highlighted gray, but if I click on it, the selected index is blue. Is there something else i need to do to have both behave the same?


Sounds like the focus is not on the ListBox. Try ListBox1.Focus() after changing the SelectedIndex.

0

精彩评论

暂无评论...
验证码 换一张
取 消