With the use of the dark color scheme, the tick boxes do not display correctly
This refers to https://marketplace.visualstudio.com/items?itemName=ViktarKarpach.DebugAttachManager- 9749#qna
As well as this when you mouse over you cannot see the text
When you mouse over an item, the highlight hides the tick and text

But if you mouse the tick, you can see it's actually selected

If you are busy let me know and I can have a go at fixing it.
Cheers
James
Sure, if you have time go ahead and fix it. I am currently in a middle of implementation remote debug feature and this issue was next on my list after that feature.
Just make sure that you are using some kind of Visual Studio constant for hover text color, so it works for different themes (e.g. white theme).
I actually just tried to reproduce that bug and was unable to. What version of VS are you using? Do you use the built-in dark theme?
Hi Karpach,
Sorry had a busy day and not had a chance to update the thread.
I did some investigation over the weekend, and problem actually lies with the windows theme I was using (Windows Basic)
According to this post: https://stackoverflow.com/questions/2138200/change-background-color-for-selected-listbox-item
If we don't explicitly set the item colors for things like item mouse over, selected etc (Which it doesn't look like we do) It will pick it from system colors (ie Windows Theme)
So I think the fix is to update the ListBox.ItemContainerStyle to have the colors set, so that it uses these rather than Windows Theme Colors
I was going to look into this, but I've not done XAML before, so I was investigating how to do it.