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