- [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#] Thiết kế giao diện ứng dụng trên Console sử dụng thư viện Terminal.Gui
Xin chào các bạn, bài viết hôm nay mình sẻ giới thiệu đến các bạn cách viết giao diện ứng dụng trên màn hình Console C#, sử dụng thư viện Terminal.Gui.
[C#] How to make Application Console GUI
Dưới đây là giao diện demo ứng dụng.
Với thư viện này giúp bạn dễ dàng show table, label, input... một cách dễ dàng và nhanh chóng.
Chi tiết các bạn có thể tham thảo tại github:
https://github.com/gui-cs/Terminal.Gui
Như hình Demo trên các bạn thấy mình có thể dễ dàng kết nối database show thông tin...
Tạo project bằng lệnh CMD:
dotnet new --install Terminal.Gui.templates
dotnet new tui -n myproj
cd myproj
dotnet run
Source code c#:
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by:
// TerminalGuiDesigner v1.0.17.0
// You can make changes to this file and they will not be overwritten when saving.
// </auto-generated>
// -----------------------------------------------------------------------------
namespace myproj{
using System.Data;
using System.Data.SqlClient;
using Terminal.Gui;
public partial class MyView {
private Terminal.Gui.Label label1;
private Terminal.Gui.Button button1;
public MyView() {
LoginForm();
this.button1 = new Terminal.Gui.Button();
this.label1 = new Terminal.Gui.Label();
this.Width = Dim.Fill(0);
this.Height = Dim.Fill(0);
this.X = 0;
this.Y = 0;
this.Modal = false;
this.Text = "";
this.Border.BorderStyle = Terminal.Gui.BorderStyle.Single;
this.Border.Effect3D = false;
this.Border.DrawMarginFrame = true;
this.TextAlignment = Terminal.Gui.TextAlignment.Left;
this.Title = "QUẢN LÝ NHÂN VIÊN - LAPTRINHVB.NET";
this.label1.Width = 4;
this.label1.Height = 1;
var dt = new DataTable();
using (var con = new SqlConnection(@"Server=TMV2209068\SQLEXPRESS;Database=HRMApp;User Id=sa;Password=LapTrinhVBNet@2022;"))
{
con.Open();
var cmd = new SqlCommand(@"SELECT id,
manhanvien as [Mã nhân viên],
tennhanvien as [Tên nhân viên],
noisinh as [Nơi Sinh],
ngaysinh as [Ngày sinh],
cmnd as [CCCD]
FROM dbo.tbl_nhanvien;", con);
var adapter = new SqlDataAdapter(cmd);
adapter.Fill(dt);
}
var tableView = new TableView()
{
X = 0,
Y = 0,
Width = 200,
Height = 10,
};
this.Add(tableView);
tableView.Table = dt;
}
public void LoginForm() {
var titleLogin = new Label()
{
Text = "ĐĂNG NHẬP HỆ THỐNG",
X = 0,
Y = Pos.Center()
};
var usernameLabel = new Label()
{
Text = "Tên đăng nhập: ",
X = 0,
Y = Pos.Top(titleLogin) + 2
};
var usernameText = new TextField("")
{
X = 0,
Y = Pos.Bottom(usernameLabel) ,
Width = 50
};
var passwordLabel = new Label()
{
Text = "Mật khẩu: ",
X = 0,
Y = Pos.Bottom(usernameText) + 1
};
var passwordText = new TextField("")
{
Secret = true,
X = 0,
Y = Pos.Top(passwordLabel) +1,
Width = 50
};
var btnLogin = new Button()
{
Text = "Đăng nhập",
Y = Pos.Bottom(passwordLabel) + 2,
X = 0,
IsDefault = true,
};
btnLogin.Clicked += () => {
if (usernameText.Text == "admin" && passwordText.Text == "password")
{
MessageBox.Query("Logging In", "Login Successful", "Ok");
Application.RequestStop();
}
else
{
MessageBox.ErrorQuery("Logging In", "Incorrect username or password", "Ok");
}
};
Add(titleLogin, usernameLabel, usernameText, passwordLabel, passwordText, btnLogin);
}
}
}
Thanks for watching!