using System; using System.ComponentModel; namespace Tizen.NUI.Binding { /// /// Template that specifies a group of styles and effects for controls. /// [EditorBrowsable(EditorBrowsableState.Never)] internal class ControlTemplate : ElementTemplate { /// /// For internal use only. /// public ControlTemplate() { } /// /// Creates a new control template for the specified control type. /// /// The type of control for which to create a template. public ControlTemplate(Type type) : base(type) { } } }