Files
wpf-notifyicon/Source/WindowsFormsSample/Program.cs
2013-11-17 23:51:06 +00:00

21 lines
419 B
C#

using System;
using System.Windows.Forms;
using Samples;
namespace WindowsFormsSample
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}