omriman12
omriman12

Reputation: 1690

WinForms show variable name from the [Design].cs

I have got many forms in my WinForms app and i wanted to know if there is a fast way to identify the form name from the [Design].cs file.

For instance if you double click a button from the design GUI it will lead you to the onClick and you can see the variable name.

I wanted to know if there is a similar was for TextBoxs, RadioButtons etc...

Upvotes: 0

Views: 148

Answers (2)

jiten
jiten

Reputation: 5264

Select the form and press F4.It will show you the property of the form and Name also.

Upvotes: 1

Raging Bull
Raging Bull

Reputation: 18747

Select the form, press F4 and you can see the form name in the properties panel.

Upvotes: 1

Related Questions