15 lines
362 B
C#
15 lines
362 B
C#
using System.Runtime.CompilerServices;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ControlApp;
|
|
|
|
[CompilerGenerated]
|
|
internal static class ApplicationConfiguration
|
|
{
|
|
public static void Initialize()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(defaultValue: false);
|
|
Application.SetHighDpiMode(HighDpiMode.SystemAware);
|
|
}
|
|
}
|