git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@52415 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Ivan.Shulga
2013-11-22 11:51:46 +00:00
committed by Alexander Trofimov
parent b7c0e5556f
commit df9b9d9411
100 changed files with 23 additions and 23 deletions

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace TestViewManager
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}