Projektdateien hinzufügen.

This commit is contained in:
Schedel Pascal
2024-08-22 06:25:24 +02:00
parent 239f22b74f
commit a9e18dd127
14 changed files with 2302 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using Pilz.UI.Telerik.Symbols;
using System.Reflection;
namespace Pilz.Tools.Symbols;
public class GlobalSymbolFactory : RadSymbolFactory<GlobalSymbols>
{
public static IRadSymbolFactory<GlobalSymbols> Instance { get; } = new GlobalSymbolFactory();
public override Assembly GetImageResourceAssembly()
{
return Assembly.GetExecutingAssembly();
}
public override string GetImageRessourcePath(GlobalSymbols svgImage)
{
return $"{GetType().Namespace}.Symbols.{svgImage}.svg";
}
}