Reputation: 1690
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
Reputation: 5264
Select the form and press F4.It will show you the property of the form and Name also.
Upvotes: 1
Reputation: 18747
Select the form, press F4 and you can see the form name in the properties panel.
Upvotes: 1