Share via

Visual Studio 2022 - Component Event Drop-down not showing active events in bold

Chris Neeves 25 Reputation points
2025-10-02T09:14:41.4733333+00:00

I am using Visual Studio Professional 2022 v 17.14.16 using dark theme, and I have the following issue.

As an example, I have a datetime picker control with some events coded in my application.

When I have selected the control in the editor from the dropdown controls, the active events that have been coded are no longer shown in bold text when I click the event handler dropdown list, as show in the below screen snip.

N.B. This behaviour is consistent for all controls that I have used.

User's image

Is there a setting that I can change to enable this feature, as I find this extremely useful for me, which was in pervious versions of Visual Studio.

I have spent a lot of time looking in the options, but I cannot find a setting that matches what I want to change.

Any help is much appreciated.

If you need any further information, please let me know, and I will try and provide that.

Many Thanks

Developer technologies | Visual Studio | Other
Developer technologies | Visual Studio | Other

A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.


Answer accepted by question author

Leon Tran (WICLOUD CORPORATION) 1,990 Reputation points Microsoft External Staff Moderator
2025-10-03T02:21:42.1666667+00:00

Hi Chris,

Thank you for reaching out. Based on your screenshot, it looks like you’re referring to the old WinForms event handler list.


In earlier versions of Visual Studio, the event dropdown menu (at the top of the code editor) displayed events that were already implemented for a control in bold text.

In Visual Studio 2022, this bold highlighting was removed as part of modernizing the editor’s dropdown menus and reworking the UI rendering pipeline.


Since this is not a configurable setting, you can use the Properties Window (lightning bolt tab) by following these steps:

Select the control in the designer. Open the Properties window → Events tab. Events with handlers are still highlighted by showing their handler names.

This is currently the only official way to quickly identify which events are hooked up.


Alternatively, you can use Go To Definition / Find All References:

Right click the control name → Go to Definition → check its event hookups in the .Designer.vb / .Designer.cs file.


You can help our development team to improve the experience in future updates by sending your feedback.

Please go to HelpSend FeedbackSuggest a Feature in Visual Studio.


Hope this helps! If you find my suggestions helpful, please kindly consider marking it so others with the same question can find help from your post.

Was this answer helpful?


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.