// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) 2014 OxyPlot contributors
//
//
// The main entry point for the application.
//
// --------------------------------------------------------------------------------------------------------------------
using System;
using System.Windows.Forms;
namespace WindowsFormsDemo
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
#if NETCOREAPP
Application.SetHighDpiMode(HighDpiMode.PerMonitorV2);
#endif
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}