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.
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.csfile.
You can help our development team to improve the experience in future updates by sending your feedback.
Please go to Help → Send Feedback → Suggest 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.