windows-secure-shell / Program.cs
GamiDPC's picture
Создай интерфейс защищенной оболочки Windows на C# WinForms с темной темой.
ea7379a verified
Raw
History Blame Contribute Delete
451 Bytes
csharp
using System;
using System.Windows.Forms;
namespace SecureShell
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new SecureShellForm());
}
}
}
</html>