SAPTeam.CommonTK
1.1.8
Prefix Reserved
See the version list below for details.
dotnet add package SAPTeam.CommonTK --version 1.1.8
NuGet\Install-Package SAPTeam.CommonTK -Version 1.1.8
<PackageReference Include="SAPTeam.CommonTK" Version="1.1.8" />
paket add SAPTeam.CommonTK --version 1.1.8
#r "nuget: SAPTeam.CommonTK, 1.1.8"
// Install SAPTeam.CommonTK as a Cake Addin #addin nuget:?package=SAPTeam.CommonTK&version=1.1.8 // Install SAPTeam.CommonTK as a Cake Tool #tool nuget:?package=SAPTeam.CommonTK&version=1.1.8
CommonTK - All in One and Multi Purpose .NET Library
This library has many Features and also provides Interfaces can be used in CommonTK.Console
library and other .NET Application.
Installation
You can install this library with Package manager console.
SAPTeam.CommonTK
PM> Install-Package SAPTeam.CommonTK
Features
Contexts
Contexts is a key feature in this library. With contexts you can set a global situation and this change is visible across the program using Context.Current.HasContext<IContext>()
.
For using this feature you can implement a new class from IContext
interface and Context
base class, or use Contexts available in CommonTK.Console
library.
JsonWorker
and Config
JsonWorker
is a base class for doing Json-related actions. A best place to use Json file, is Application onfig.
Config
class do it simply Just by getting a file name and a Serializer
class.
This class gives you config data in Config.Prefs
property that you can make changes on it and save changes using Config.Write()
method.
This is the Simplest way to save your Application settings or other type of data!
public class Entries
{
public string UserName { get; set; }
public string Password { get; set; }
}
// Loads config.json, if it is not existing create it.
Config<Entries> config = new("config.json");
// Set new values.
config.Prefs.UserName = "admin";
config.Prefs.Password = "12345";
// Save config.json.
config.Write();
Status Providers
There is a set of Interfaces and methods to work with IStatusProvider
classes.
This feature intended for Interacting with users and must be implemented by Application for work in a specified way.
You can deal with statuses using static methods of Interact
class or directly with StatusProvider.Current
.
First you must Create and Assign a new instance of a class that implements IStatusProvider
using Interact.AssignStatus(IStatusProvider)
or:
StatusProvider.Current = new StatusProvider();
There is a variety types of Status Providers. All of that implements IStatusProvider
as root Interface.
IStatusProvider
This interface has a basic functionality. Just a Write(string)
and Clear()
method for writing and clearing text.
It is suitable for simple uses such as using a single label as Status Provider.
public class UIStatusProvider : IStatusProvider
{
private readonly Label status;
public UIStatusProvider(Label label)
{
status = label;
}
public void Clear()
{
status.Text = "";
}
public void Write(string message)
{
status.Text = message;
}
}
IProgressStatusProvider
This interface is intended to use when you need to show a message with progress bar.
It has two method Write(string, ProgressType)
and Increment(int)
for writing a message with progress bar and incrementing value of progress bar respectively.
also Classes that implement this interface can throw exception Write(string)
is called.
IMultiStatusBar
This interface intended for complicated usages. It is useful when you deal with a Control
that support item collections, such as StatusStrip
.
you must declare a method to manage and control multi item collections.
This is a code from my AndroCtrl project:
public class AppStatusProvider : IProgressStatusProvider, IMultiStatusProvider
{
readonly StatusStrip statusbar;
ToolStripProgressBar progressbar;
bool gc;
readonly Dictionary<string, (ToolStripLabel label, ToolStripProgressBar progressBar)> packets = new();
public AppStatusProvider(StatusStrip statusbar, bool garbageCollection = true)
{
this.statusbar = statusbar;
gc = garbageCollection;
}
public void Clear()
{
if (statusbar.Items.Count > 0)
{
foreach (var packet in packets)
{
if (packet.Value.progressBar != progressbar)
{
Clear(packet.Key);
}
}
if (progressbar != null)
{
throw new InvalidOperationException("Can't remove an unfinished progress bar.");
}
}
}
public void Clear(string message)
{
if (packets[message].progressBar == progressbar)
{
progressbar = null;
}
statusbar.Items.Remove(packets[message].label);
statusbar.Items.Remove(packets[message].progressBar);
packets.Remove(message);
}
public void Write(string message)
{
throw new NotImplementedException();
}
public void Write(string message, ProgressBarType type)
{
if (progressbar != null && type == ProgressBarType.Block)
{
throw new InvalidOperationException("Can't register more than one block progress bar.");
}
if (packets.ContainsKey(message))
{
throw new ArgumentException("Can't use a duplicated status message: ", message);
}
ToolStripLabel label = new(message);
statusbar.Items.Add(label);
switch (type)
{
case ProgressBarType.None:
throw new ArgumentException("type can't be None.");
case ProgressBarType.Wait:
ToolStripProgressBar loadingbar = new();
loadingbar.Style = ProgressBarStyle.Marquee;
statusbar.Items.Add(loadingbar);
packets[message] = (label, loadingbar);
break;
case ProgressBarType.Block:
progressbar = new();
statusbar.Items.Add(progressbar);
packets[message] = (label, progressbar);
break;
}
}
public void Increment(int value)
{
if (value == -1)
{
progressbar.PerformStep();
}
else
{
progressbar.Increment(value);
}
if (gc && progressbar.Value >= 100)
{
Clear(packets.Where((x) => x.Value.progressBar == progressbar).First().Key);
}
}
}
Timer
Starts a simple timer in separate thread and calls the callback
once or several times.
var timer = CommonTK.Timer.Set(5000. () => Environment.Exit(0), repeat: false);
Contribution
Feel free to grab the source, open issues or pull requests.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- Newtonsoft.Json (>= 13.0.3)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on SAPTeam.CommonTK:
Package | Downloads |
---|---|
SAPTeam.CommonTK.Console
All in One and Multi Purpose .NET Library for Professional Console actions. This library contains toolset of classes and methods that can be used by .NET Applications to perform Deep level Controls on Console. Key features of this library are: - Console Form: A way different way to Interact with your users. A Console User Interface! - Creating and Using console windows in Desktop Applications in The easiest way! - Colorize Your console text output! - Global Color Set. and more... For Getting started with this library and See more features you can visit the github page. |
|
SAPTeam.Kryptor.Client
This library has common utilities used by kryptor front-end programs. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.3 | 216 | 9/4/2024 |
4.0.2 | 134 | 8/29/2024 |
3.0.2 | 689 | 8/10/2024 |
3.0.1 | 430 | 3/18/2024 |
2.4.5 | 674 | 6/10/2023 |
2.4.1 | 311 | 5/1/2023 |
2.3.11 | 394 | 4/23/2023 |
2.3.9 | 239 | 4/23/2023 |
2.3.8 | 249 | 4/23/2023 |
2.3.7 | 249 | 4/23/2023 |
2.3.6 | 160 | 4/23/2023 |
2.3.5 | 166 | 4/23/2023 |
2.3.4 | 189 | 4/23/2023 |
2.3.3 | 642 | 4/14/2023 |
2.3.2 | 268 | 4/13/2023 |
2.2.20 | 173 | 4/13/2023 |
2.2.19 | 167 | 4/13/2023 |
2.2.18 | 157 | 4/13/2023 |
2.2.17 | 182 | 4/12/2023 |
2.2.16 | 166 | 4/12/2023 |
2.2.15 | 161 | 4/12/2023 |
2.2.14 | 171 | 4/11/2023 |
2.2.13 | 187 | 4/11/2023 |
2.2.12 | 175 | 4/11/2023 |
2.2.11 | 179 | 4/11/2023 |
2.2.9 | 192 | 4/11/2023 |
2.2.8 | 162 | 4/10/2023 |
2.2.7 | 165 | 4/10/2023 |
2.2.6 | 188 | 4/10/2023 |
2.2.4 | 193 | 4/10/2023 |
2.2.3 | 175 | 4/9/2023 |
2.2.2 | 200 | 4/9/2023 |
2.1.2 | 186 | 4/9/2023 |
2.1.1 | 205 | 4/6/2023 |
2.0.8 | 360 | 4/5/2023 |
2.0.7-alpha | 133 | 4/5/2023 |
2.0.6-alpha | 142 | 4/5/2023 |
2.0.5-alpha | 140 | 4/4/2023 |
2.0.4-alpha | 135 | 4/4/2023 |
2.0.3-alpha | 116 | 4/4/2023 |
2.0.2-alpha | 132 | 4/4/2023 |
2.0.1-alpha | 117 | 4/4/2023 |
1.3.6 | 217 | 4/3/2023 |
1.3.5 | 196 | 4/3/2023 |
1.3.3 | 188 | 4/3/2023 |
1.3.2 | 195 | 4/3/2023 |
1.2.6 | 290 | 4/3/2023 |
1.2.5 | 414 | 4/1/2023 |
1.2.4 | 371 | 4/1/2023 |
1.2.3 | 571 | 3/31/2023 |
1.2.2 | 196 | 3/31/2023 |
1.2.1 | 187 | 3/31/2023 |
1.2.0 | 728 | 3/30/2023 |
1.1.16 | 205 | 3/30/2023 |
1.1.14 | 209 | 3/29/2023 |
1.1.13 | 207 | 3/29/2023 |
1.1.12 | 185 | 3/29/2023 |
1.1.11 | 193 | 3/29/2023 |
1.1.10 | 202 | 3/29/2023 |
1.1.9 | 218 | 3/29/2023 |
1.1.8 | 487 | 3/28/2023 |
1.1.1 | 314 | 3/28/2023 |
1.0.3 | 272 | 3/26/2023 |