- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Chia sẻ class Bootstrap format style trên console winform
Xin chào các bạn, bài viết hôm nay mình chia sẻ các bạn class BootStrap Style để xuất định dạng chữ trên Console Winform.
[C#] Bootstrap Style in Console windows
Dưới đây là hình ảnh demo ứng dụng:
Đầu tiên, các bạn tạo mình 1 class Bootstrap.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace BootstrapStyle
{
public static class Bootstrap
{
//Bootstrap.Write Basic
public static void Write(string style, string value)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Console.Write(value);
Console.ResetColor();
}
public static void Write(string value, int min, int max)
{
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
}
public static void Write(string style, string value, int min, int max)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
Console.ResetColor();
}
//Bootstrap.Write with params
public static void Write(string style, string value, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Console.Write(value, arg);
Console.ResetColor();
}
public static void Write(string value, int min, int max, params object[] arg)
{
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
}
public static void Write(string style, string value, int min, int max, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
Console.ResetColor();
}
//Bootstrap.WriteLine Basic
public static void WriteLine(string style, string value)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Console.WriteLine(value);
Console.ResetColor();
}
public static void WriteLine(string value, int min, int max)
{
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
}
public static void WriteLine(string style, string value, int min, int max)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
Console.ResetColor();
}
//Bootstrap.WriteLine with params
public static void WriteLine(string style, string value, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Console.WriteLine(value, arg);
Console.ResetColor();
}
public static void WriteLine(string value, int min, int max, params object[] arg)
{
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
}
public static void WriteLine(string style, string value, int min, int max, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
break;
}
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
Console.ResetColor();
}
//Bootstrap.Alert Basic
public static void Alert(string style, string value)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Console.Write(value);
Console.ResetColor();
}
public static void Alert(string style, string value, int min, int max)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
Console.ResetColor();
}
//Bootstrap.Alert with params
public static void Alert(string style, string value, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Console.Write(value, arg);
Console.ResetColor();
}
public static void Alert(string style, string value, int min, int max, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
Console.Write(value.Substring(t, 1));
}
Console.ResetColor();
}
//Bootstrap.AlertLineBasic
public static void AlertLine(string style, string value)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Console.WriteLine(value);
Console.ResetColor();
}
public static void AlertLine(string style, string value, int min, int max)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Random speed = new Random();
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
Console.ResetColor();
}
//Bootstrap.AlertLine with params
public static void AlertLine(string style, string value, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Console.WriteLine(value, arg);
Console.ResetColor();
}
public static void AlertLine(string style, string value, int min, int max, params object[] arg)
{
switch (style)
{
case "Success":
Console.ForegroundColor = ConsoleColor.Green;
Console.BackgroundColor = ConsoleColor.DarkGreen;
break;
case "Information":
Console.ForegroundColor = ConsoleColor.Cyan;
Console.BackgroundColor = ConsoleColor.DarkCyan;
break;
case "Warning":
Console.ForegroundColor = ConsoleColor.Yellow;
Console.BackgroundColor = ConsoleColor.DarkYellow;
break;
case "Danger":
Console.ForegroundColor = ConsoleColor.Red;
Console.BackgroundColor = ConsoleColor.DarkRed;
break;
default:
Console.ForegroundColor = ConsoleColor.Gray;
Console.BackgroundColor = ConsoleColor.DarkGray;
break;
}
Random speed = new Random();
value = string.Format(value, arg);
for (int t = 0; t < value.Count(); t++)
{
Thread.Sleep(Convert.ToInt32(speed.Next(min, max)));
if (t != value.Count() - 1)
{
Console.Write(value.Substring(t, 1));
}
else
{
Console.WriteLine(value.Substring(t, 1));
}
}
Console.ResetColor();
}
}
}
Các bạn đọc code sẽ thấy thường mình xuất thông báo theo 4 loại: Success, Warning, Infomation, Danger và Default.
Các sử dụng:
namespace BootstrapStyle
{
internal class Program
{
static void Main(string[] args)
{
Bootstrap.WriteLine("Success", "Bootstrap Style Console");
Bootstrap.WriteLine("Danger", "Bootstrap Style Console");
Bootstrap.WriteLine("Warning", "Bootstrap Style Console");
Bootstrap.WriteLine("Infomation", "Bootstrap Style Console");
Bootstrap.Alert("Success", "Bootstrap Style Console");
Bootstrap.AlertLine("Danger", "Hello laptrinhvb.net", 10, 20);
Console.ReadKey();
}
}
}
Nếu các bạn truyền vào thông số thời gian, chữ sẽ chạy effect dạng label text.
Thanks for watching!