// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls.Templates { using System; using Perspex.Controls.Primitives; using Perspex.Styling; /// /// A template for a . /// public class ControlTemplate : FuncTemplate, IControlTemplate { /// /// Initializes a new instance of the class. /// /// The build function. public ControlTemplate(Func build) : base(build) { } } }