Files
aistudio-wpf-diagram/Fluent.Ribbon/Fluent.Ribbon.Showcase/Helpers/TemplateCollection.cs

11 lines
299 B
C#
Raw Normal View History

2021-07-23 09:42:22 +08:00
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>
{
}
}