Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon.Showcase/Helpers/TemplateCollection.cs
2021-07-23 09:42:22 +08:00

11 lines
299 B
C#

namespace FluentTest.Helpers
{
using System.Collections.Generic;
using System.Windows;
/// <summary> Holds a collection of <see cref="DataTemplate"/> items for application as a control's DataTemplate. </summary>
public class TemplateCollection : List<DataTemplate>
{
}
}