Is this part of MVC in .NET?

Posted by 4thSpace on Stack Overflow See other posts from Stack Overflow or by 4thSpace
Published on 2009-01-14T15:57:31Z Indexed on 2010/05/30 21:02 UTC
Read the original article Hit count: 319

Filed under:
|
|
|
|

I have a .NET MVC winform app. I've created an AppDelegate class that handles application startup and shutdown...for now (it might do more later). Winform apps have a Program.cs file that does some app initialization, starts the message pump and creates the first form. In my app, the first form is AppDelegate, which isn't really a form but is forced that way by Application.Run(). AppDelegate does any further app initialization and starts the first Controller, which then initializes any child controllers (these then create their views).

I don't consider events occuring in Program.cs and AppDelegate as part of the MVC. Conceptually, what would these be called?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about winforms