2016-01-06 14:47:38 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
2016-01-09 20:46:25 +00:00
|
|
|
|
namespace Crypto_Notepad
|
2016-01-06 14:47:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
static class Program
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Главная точка входа для приложения.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[STAThread]
|
2016-01-15 16:17:44 +00:00
|
|
|
|
static void Main()
|
2016-01-06 14:47:38 +00:00
|
|
|
|
{
|
|
|
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
|
|
Application.Run(new MainWindow());
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2016-01-26 17:07:17 +00:00
|
|
|
|
|
|
|
|
|
|
static class publicVar
|
|
|
|
|
|
{
|
2016-01-27 17:19:25 +00:00
|
|
|
|
public static string encryptionKey = "";
|
|
|
|
|
|
public static bool keyChanged = false;
|
|
|
|
|
|
public static bool settingsChanged = false;
|
|
|
|
|
|
public static bool okPressed = false;
|
2016-01-26 17:07:17 +00:00
|
|
|
|
}
|
2016-01-27 17:19:25 +00:00
|
|
|
|
|
2016-01-06 14:47:38 +00:00
|
|
|
|
}
|