add symbol enums
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using Pilz.SymbolPacks.Color;
|
||||
using Pilz.UI.Telerik.Symbols.Sets;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
using Pilz.SymbolPacks.Fluent;
|
||||
using Pilz.UI.Telerik.Symbols.Sets;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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();
|
||||
|
||||
9069
Pilz.UI.Telerik.Symbols/Sets/SymbolsColor.cs
Normal file
9069
Pilz.UI.Telerik.Symbols/Sets/SymbolsColor.cs
Normal file
File diff suppressed because it is too large
Load Diff
4198
Pilz.UI.Telerik.Symbols/Sets/SymbolsFluent.cs
Normal file
4198
Pilz.UI.Telerik.Symbols/Sets/SymbolsFluent.cs
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user