Add ScriptUI to support XAML file (#320)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / ControlTemplate.cs
1 using System;
2 using System.ComponentModel;
3
4 namespace Tizen.NUI.Binding
5 {
6     /// <summary>
7     /// Template that specifies a group of styles and effects for controls.
8     /// </summary>
9     [EditorBrowsable(EditorBrowsableState.Never)]
10     internal class ControlTemplate : ElementTemplate
11     {
12         /// <summary>
13         /// For internal use only.
14         /// </summary>
15         public ControlTemplate()
16         {
17         }
18
19         /// <summary>
20         /// Creates a new control template for the specified control type.
21         /// </summary>
22         /// <param name="type">The type of control for which to create a template.</param>
23         public ControlTemplate(Type type) : base(type)
24         {
25         }
26     }
27 }