-> let's use wine for comatibility again -> easier to maintain -> easier to build dynamic options with
18 lines
444 B
C#
18 lines
444 B
C#
using Pilz.UI.WinForms.Telerik.Symbols;
|
|
using System.Reflection;
|
|
|
|
namespace ModpackUpdater.Apps.Manager;
|
|
|
|
internal class AppSymbolFactory : RadSymbolFactory<AppSymbols>
|
|
{
|
|
public override Assembly GetImageResourceAssembly()
|
|
{
|
|
return typeof(AppSymbols).Assembly;
|
|
}
|
|
|
|
public override string GetImageRessourcePath(AppSymbols svgImage)
|
|
{
|
|
return $"{typeof(AppSymbols).Namespace}.Symbols.{svgImage}.svg";
|
|
}
|
|
}
|