Info
Version: | 1.0.1 |
Author(s): | Paulus Yeung |
Last Update: | Wednesday, October 28, 2020 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/paulusyeung/VWG.Community/tree/master/VWG.Community.NetSqlAzMan |
NuGet Url: | https://www.nuget.org/packages/VWG.Community.NetSqlAzMan |
Install
Install-Package VWG.Community.NetSqlAzMan
dotnet add package VWG.Community.NetSqlAzMan
paket add VWG.Community.NetSqlAzMan
VWG.Community.NetSqlAzMan Download (Unzip the "nupkg" after downloading)
Dependencies
- NetSqlAzMan-x64(>= 3.6.0.15)
You need to include your own icons or copy those from github.
Usage:
private void Form1_Load(object sender, EventArgs e)
{
VWGContext.Current.CurrentTheme = "Vista";
//VWGContext.Current.CurrentTheme = "Graphite";
var webConsole = new VWG.Community.NetSqlAzMan.WebConsole()
{
Dock = DockStyle.Fill
};
webConsole.SqlConnectionString = @"Your Connection String;";
webConsole.Theme = "light";
this.Form.Controls.Add(webConsole);
}.