A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

17 lines
548 B

namespace Perspex.Xaml.Desktop
{
using System;
using System.Collections.ObjectModel;
using Controls;
using OmniXaml;
using OmniXaml.AppServices;
using OmniXaml.AppServices.NetCore;
public class PerspexInflatableTypeFactory : InflatableTypeFactory
{
public PerspexInflatableTypeFactory() : base(new TypeFactory(), new InflatableTranslator(), typeFactory => new PerspexXamlLoader(typeFactory))
{
Inflatables = new Collection<Type> { typeof(Window), typeof(UserControl) };
}
}
}