using System;
using ControlCatalog;
using Avalonia;
namespace WindowsInteropTest
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
System.Windows.Forms.Application.EnableVisualStyles();
System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
AppBuilder.Configure()
.UseWin32()
.UseSkia()
.SetupWithoutStarting();
System.Windows.Forms.Application.Run(new EmbedToWinFormsDemo());
}
}
}