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.
 
 
 

19 lines
520 B

using System;
namespace Avalonia
{
/// <summary>
/// Provides a runtime interface for interfacing with <see cref="StyledProperty{TValue}"/>.
/// </summary>
internal interface IStyledPropertyAccessor
{
/// <summary>
/// Gets the default value for the property for the specified type.
/// </summary>
/// <param name="type">The type.</param>
/// <returns>
/// The default value.
/// </returns>
object? GetDefaultValue(Type type);
}
}