vote up 2 vote down star

This is pure curiosity...

Most 'professionals' will likely never use "Form1" as a valid class name in their Windows Forms projects. I usually end up renaming it to MainForm.

What do you do?

Edit: For those of you that use hungarian notation (frmMain) - why? I don't think it would still be considered a standard practice... is it?

flag

2  
I go one better: Form2 – Draemon Jul 31 at 0:38
@Draemon +1, I lol'd – routeNpingme Jul 31 at 0:45
So if everyone names their main form "MainForm" what do they call their instance variable... "frmMain"? ;) gdr... – roygbiv Jul 31 at 2:51

12 Answers

vote up 10 vote down check

MainForm. I loathe Hungarian notation, and FxCop complains about it in any case, so MainForm, OkButton, AboutDialog, etc.

link|flag
@Downvoter: please say why you downvoted. There's no way to improve the answer if I don't know what problem you find in it. – John Saunders Aug 14 at 21:58
vote up 8 vote down

{AppName}Form.

link|flag
vote up 3 vote down

Dennis. My form's name is Dennis.

link|flag
vote up 2 vote down

frmMain is my typical choice.

link|flag
11  
hungarian notation - yuck! – Luke Schafer Jul 31 at 0:43
1  
@Luke - I agree in the general sense (i.e. strString irks me), but I do find that using this for UI elements (txtTextbox) can be useful, in moderation. That said, I don't feel the need to use it for form names. – AgentConundrum Jul 31 at 0:48
1  
Yuck indeed. Hungarian notation should be used to solve problems, not just as a habit. Modern IDEs now let you hover your mouse over a variable and see its type if you need to, but if you name a variable well you won't even need that. This is a really long article but details exactly how to use Hungarian notation to actually gain an advantage, rather than just adding unnecessary lowercase letters everywhere: joelonsoftware.com/articles/Wrong.html – Ricket Jul 31 at 0:48
Been awhile since I've made a winform app, and most of them were for an (old, mind you) instructor that enforced it. The WPF realm is where I reside these days with a "MainWindow" and "<Name>Views" – statenjason Jul 31 at 1:06
@AgentConundrum - yeah, that's what most people seem to say which is fine. I'd just rather steer clear of it. The true meaning of Apps Hungarian (hungarian notation) was all about the 'kind of' object rather than the 'type of', but this has been lost to antiquity... I think Joel even wrote about this once besides the article Ricket posted – Luke Schafer Jul 31 at 3:31
show 1 more comment
vote up 2 vote down

I prefer MainForm, not FormMain. Using Form as a prefix breaks alphabetical order!

link|flag
vote up 1 vote down

frmMain for MDI applications. I don't bother changing it for single-form apps..

link|flag
I do the same :D – yelinna Jul 31 at 0:49
vote up 1 vote down

I often use some variation of ApplicationShellForm.

This is because it's really, in most of my "real" work, nothing more than a thin shell where I inject the real behavior at runtime. My "main form" usually has very little in it, in and of itself.

That being said - I'd always call it something based on its behavior. What does your main form or application do? That's what would determine what I'd call it, if I wasn't building everything around dependency injection and trying to maintain some separation of concerns.

link|flag
vote up 0 vote down

I usually name my main form to keep in line with the project. For instance, I'm (slowly) writing a small application that was intended to help manage peer reviews at my previous employer. My main form in this project was simply called ReviewManager.

link|flag
vote up 0 vote down

Generally I rename it to frmMain, similar to statenjason. But if it has a different purpose, or is being used as a prototype that will get rolled into a larger project I will rename it to something more descriptive. So Form1 might become frmSomeComplexTest, or frmSomeMethodOutputTester.

link|flag
vote up 0 vote down

I don't change it unless a different Form ends up being the main one. In which case, I'll rename that one Form1.

Form1, FormMain, it's essentially the same thing. It's not like your users will ever know/care, nor will it be confusing for someone maintaining your code.

link|flag
vote up 0 vote down

If my program is named Fred, and its UI lives in a form, FredForm is what that form gets called. The moment there's more than one form, it gets promoted to FredMainForm, so long as it's actually still the centerpiece of the UI.

link|flag
vote up 0 vote down

frmMain for single form apps, MDIMain for MDI apps. I name the project specific to the business purpose and let the business decide the form's text.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.