?? cmain.cs
字號:
// 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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -