add symbol enums
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
using Pilz.SymbolPacks.Color;
|
using Pilz.SymbolPacks.Color;
|
||||||
|
using Pilz.UI.Telerik.Symbols.Sets;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace Pilz.UI.Telerik.Symbols.Factories;
|
namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using Pilz.SymbolPacks.Fluent;
|
using Pilz.SymbolPacks.Fluent;
|
||||||
|
using Pilz.UI.Telerik.Symbols.Sets;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
namespace Pilz.UI.Telerik.Symbols.Factories;
|
namespace Pilz.UI.Telerik.Symbols.Factories;
|
||||||
|
|||||||
@@ -8,15 +8,15 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>1.0.4</Version>
|
<Version>1.0.5</Version>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Pilz.SymbolPacks.Color" Version="1.0.2">
|
<PackageReference Include="Pilz.SymbolPacks.Color" Version="1.0.3">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Pilz.SymbolPacks.Fluent" Version="1.0.4">
|
<PackageReference Include="Pilz.SymbolPacks.Fluent" Version="1.0.5">
|
||||||
<PrivateAssets>all</PrivateAssets>
|
<PrivateAssets>all</PrivateAssets>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
using Pilz.SymbolPacks.Color;
|
using Pilz.UI.Telerik.Symbols.Factories;
|
||||||
using Pilz.SymbolPacks.Fluent;
|
using Pilz.UI.Telerik.Symbols.Sets;
|
||||||
using Pilz.UI.Telerik.Symbols.Factories;
|
|
||||||
|
|
||||||
namespace Pilz.UI.Telerik.Symbols;
|
namespace Pilz.UI.Telerik.Symbols;
|
||||||
|
|
||||||
public static class RadSymbols
|
public static class RadSymbols
|
||||||
{
|
{
|
||||||
private static dynamic? color;
|
private static IRadSymbolFactory<SymbolsColor>? color;
|
||||||
private static dynamic? fluent;
|
private static IRadSymbolFactory<SymbolsFluent>? fluent;
|
||||||
|
|
||||||
public static IRadSymbolFactory<SymbolsColor> Color => color ??= new ColorFactory();
|
public static IRadSymbolFactory<SymbolsColor> Color => color ??= new ColorFactory();
|
||||||
public static IRadSymbolFactory<SymbolsFluent> Fluent => fluent ??= new FluentFactory();
|
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