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.
 
 
 

21 lines
539 B

namespace Perspex.Xaml.HighLevel
{
using OmniXaml;
using Context;
using OmniXaml.ObjectAssembler;
public class PerspexObjectAssemblerFactory : IObjectAssemblerFactory
{
private readonly WiringContext context;
public PerspexObjectAssemblerFactory(WiringContext context)
{
this.context = context;
}
public IObjectAssembler CreateAssembler(ObjectAssemblerSettings settings)
{
return new PerspexObjectAssembler(context, settings);
}
}
}