add symbol enums

This commit is contained in:
Pilzinsel64
2025-06-04 12:27:03 +02:00
parent a5a8a0b71c
commit a9690576de
6 changed files with 13276 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
using Pilz.SymbolPacks.Color;
using Pilz.UI.Telerik.Symbols.Sets;
using System.Reflection;
namespace Pilz.UI.Telerik.Symbols.Factories;

View File

@@ -1,4 +1,5 @@
using Pilz.SymbolPacks.Fluent;
using Pilz.UI.Telerik.Symbols.Sets;
using System.Reflection;
namespace Pilz.UI.Telerik.Symbols.Factories;

View File

@@ -8,15 +8,15 @@
</PropertyGroup>
<PropertyGroup>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Pilz.SymbolPacks.Color" Version="1.0.2">
<PackageReference Include="Pilz.SymbolPacks.Color" Version="1.0.3">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Pilz.SymbolPacks.Fluent" Version="1.0.4">
<PackageReference Include="Pilz.SymbolPacks.Fluent" Version="1.0.5">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

View File

@@ -1,13 +1,12 @@
using Pilz.SymbolPacks.Color;
using Pilz.SymbolPacks.Fluent;
using Pilz.UI.Telerik.Symbols.Factories;
using Pilz.UI.Telerik.Symbols.Factories;
using Pilz.UI.Telerik.Symbols.Sets;
namespace Pilz.UI.Telerik.Symbols;
public static class RadSymbols
{
private static dynamic? color;
private static dynamic? fluent;
private static IRadSymbolFactory<SymbolsColor>? color;
private static IRadSymbolFactory<SymbolsFluent>? fluent;
public static IRadSymbolFactory<SymbolsColor> Color => color ??= new ColorFactory();
public static IRadSymbolFactory<SymbolsFluent> Fluent => fluent ??= new FluentFactory();

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff