18 lines
443 B
C#
18 lines
443 B
C#
using Pilz.UI.Telerik.Symbols.Sets;
|
|
using System.Reflection;
|
|
|
|
namespace Pilz.UI.Telerik.Symbols.Factories;
|
|
|
|
internal class FluentFactory : RadSymbolFactory<SymbolsFluent>
|
|
{
|
|
public override Assembly GetImageResourceAssembly()
|
|
{
|
|
return typeof(SymbolsFluent).Assembly;
|
|
}
|
|
|
|
public override string GetImageRessourcePath(SymbolsFluent svgImage)
|
|
{
|
|
return $"Pilz.SymbolPacks.Fluent.Files.{svgImage}.svg";
|
|
}
|
|
}
|