📄 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 + -