committed by
GitHub
7 changed files with 46 additions and 13 deletions
@ -0,0 +1,13 @@ |
|||
namespace Avalonia |
|||
{ |
|||
/// <summary>
|
|||
/// Defines an element with a data context that can be used for binding.
|
|||
/// </summary>
|
|||
public interface IDataContextProvider : IAvaloniaObject |
|||
{ |
|||
/// <summary>
|
|||
/// Gets or sets the element's data context.
|
|||
/// </summary>
|
|||
object DataContext { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue