I am creating a Windows Form and the class is declare as partial. I can code all the behaviors on my side, but I noticed that on the other side of the partial class I can see how the UI is created. How can I open this? (I noticed this hidden code by stepping through in the debugger)
Share
You can click on the Class name, then press F12, It will list every declaration of your class, either partial or not.
Cheers