10 lines
170 B
C#
10 lines
170 B
C#
using System.Windows;
|
|
|
|
namespace TheXamlGuy.TaskbarGroup.Foundation
|
|
{
|
|
public interface IDataTemplateFactory
|
|
{
|
|
DataTemplate? Create(Type type);
|
|
}
|
|
}
|