KRY-0x02/Program.cs
citizen b5586740a1
improved app layout, un/loading pics
* renamed Form1 to main_form
* added functionality to un/load pictures
* added button  for default picture
* added some informational labels
2019-12-16 05:24:03 +01:00

23 lines
513 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KRY_0x02
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new main_form());
}
}
}