Files
aistudio-wpf-diagram/Others/Fluent.Ribbon/Fluent.Ribbon.Showcase/Helpers/TemplateCollection.cs
2023-04-16 20:11:40 +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>
{
}
}