7 changed files with 34 additions and 8 deletions
@ -0,0 +1,15 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="IDataTemplate.cs" company="Steven Kirk">
|
|||
// Copyright 2014 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Controls |
|||
{ |
|||
public interface IDataTemplate |
|||
{ |
|||
bool Match(object data); |
|||
|
|||
Control Build(object data); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue