I want to change the way that Visual Studio generates an encoding template for a WinForms application.
For example, in C #:
- As soon as I dragged the control into the constructor, the name of this control will be in CamelCase
- As soon as I define a control event, Visual Studio generates the code as CamelCase, then "_", then the event name in pascalCase
I want Visual Studio to use pascalCase in all cases. Is it possible? If so, how?
c # winforms visual-studio-2012
mah
source share