Ivan is exactly correct here. The StrataFrame Maintenance for is nothing more than an SF StandardForm with a Gradient Form Header and MaintenanceToolStrip already dropped on it. This is all setup in a template file.
The easiest way to achieve what you are trying to do is to create your own template that already has the controls and code "pre-built" which gives you a big leg up when developing your specific application.
All item template files are actually stored in a ZIP in the following location:
C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates\VisualBasic
or
C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates\CSharp
You can extract these template files and open up the internal files to see what is done. You can then create a form or other control to your liking and create your own ZIP file with the contained contents.
Once you have the ZIP file created and placed in the same folder as mentioned above (be sure to create a unique template name and ZIP file name) then you need to install it. To do this close down Visual Studio, go to the Visual Studio command prompt and type:
devenv.exe /setup
Once complete your template will then be installed when you go back into Visual Studio.