I was wondering if an item in ListView could be selected when Mouse Release, not Mouse Down. (Like ClickMode property of Buttons) Is there any way to achieve that?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Register to
PreviewMouseDownon the list and sete.Handled=true. Register toPreviewMouseUpand handle the selection manually. This should do what you’re looking for.But beware that such a list-behaviour confuses the user.