Code Search for Developers
 
 
  

App.cs from MASE: Agile Software Engineering at Krugle


Show App.cs syntax highlighted

using System;
using System.Windows.Forms;
//hhh
namespace New_Study_Project
{
	public class App
	{
		private static MainFormManager mainFormManager;

		public static MainFormManager MainFormManager
		{
			get {return mainFormManager;}
		}

		public App()
		{
			mainFormManager=new MainFormManager();
			mainFormManager.CurrentForm=new Dashboard();
			Application.Run(mainFormManager);
		}

		[STAThread]
		static void Main() 
		{
			new App();
		}
	}
}




See more files for this project here

MASE: Agile Software Engineering

The MASE project investigates methods to support the coordination and executable acceptance testing of software projects. Keywords: Agile methods, distributed teams, Extreme Programming. See http://ebe.cpsc.ucalgary.ca/ebe for more information.

Project homepage: http://sourceforge.net/projects/mase
Programming language(s): Java,XML
License: other

  App.cs
  Form1.cs
  Form1.resx
  MainFormManager.cs