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.
 
 
 

25 lines
635 B

using System.Reflection;
namespace Avalonia.Markup.Xaml;
#nullable enable
public class RuntimeXamlLoaderConfiguration
{
/// <summary>
/// Default assembly for clr-namespace:.
/// </summary>
public Assembly? LocalAssembly { get; set; }
/// <summary>
/// Defines is CompiledBinding should be used by default.
/// Default is 'false'.
/// </summary>
public bool UseCompiledBindingsByDefault { get; set; } = false;
/// <summary>
/// Indicates whether the XAML is being loaded in design mode.
/// Default is 'false'.
/// </summary>
public bool DesignMode { get; set; } = false;
}