cmain.cs

来自「C#实现DHTML编辑器功能!」· CS 代码 · 共 47 行

CS
47
字号
// DINAMIC XML Editor
//
// Copyright (c) 2002-2003 Dusan Hlavaty
// mailto: duddo@atlas.cz
//
// This software is licensed under the terms of
// GNU General Public license
//
using System;

namespace XML_editor
{
	/// <summary>
	/// Trieda samotnej aplikacie. Aplikacia sa spusta statickou metodou Main().
	/// </summary>
	public class cmain
	{

		// -----------------------------------------------------------------------------------
		/// <summary>
		/// Konstruktor (prazdny, lebo ziadny nepotrebujeme)
		/// </summary>
		public cmain()
		{ 

		}
		// -----------------------------------------------------------------------------------
		/// <summary>
		/// Vstupny bod pre aplikaciu
		/// </summary>
		[STAThread]
		static void Main() 
		{
			XML_editor.MyForms.SplashForm frm = new XML_editor.MyForms.SplashForm();
			frm.Show();
			System.Windows.Forms.Application.DoEvents();

			frm.CanDispose = true;

			System.Windows.Forms.Application.Run(new MyForms.MainForm());

		}

	} // class cmain

} // namespace XML_editor

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?