- [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#] Hướng dẫn khóa màn hình desktop screen lock winform
Xin chào các bạn, bài viết hôm nay mình sẻ hướng dẫn các bạn cách viết ứng dụng khóa màn hình Screen lock desktop trong lập trình c# winform.
[C#] Lock Screen Desktop Winform
Để lock được screen desktop của của người dùng, các bạn cần thực hiện các bước sau:
- Khóa phím Alt + F4
- Ẩn các nút đóng trên thanh title bar
- Dùng 1 timer để khi có ứng dụng nào xuất hiện lên trước, mình sẽ dùng thuộc tính Bringtofront để mang ứng dụng lock mình lên trên cùng
- Gởi phím sendkey ESC, chặn người dùng mở start menu trên Windows (vì trên windows start, người dùng có thể sử dụng lệnh Taskkill trên MS-DoS để đóng ứng dụng.
- Nếu các bạn mình khóa cẩn thận (tích hợp chức năng khởi động ứng dụng cùng windows) thì người dùng có tắt máy mở lại ứng dụng vẫn tiếp tục chạy và khóa màn hình lại.
- Khi nhập mật khẩu sai quá 3 lần, thì chúng ta sẽ ẩn luôn TextBox nhập mật khẩu để mở khóa
Dưới đây, là hình ảnh demo ứng dụng Screen Lock C#, Winform:
Full source code lock sreen c#:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace ScreenLock
{
public partial class SimpleLock : Form
{
public SimpleLock()
{
InitializeComponent();
this.BackColor = Color.Black;
this.CausesValidation = false;
this.StartPosition = FormStartPosition.Manual;
this.WindowState = FormWindowState.Maximized;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.ShowInTaskbar = false;
this.TopMost = true;
this.BackgroundImage = Image.FromFile("bg.jpg");
txtPassword.TextAlign = HorizontalAlignment.Center;
txtPassword.BackColor = Color.DarkGray;
txtPassword.ForeColor = Color.Yellow;
txtPassword.BorderStyle = BorderStyle.None;
layerTimer.Interval = 1;
layerTimer.Enabled = true;
}
protected override bool ProcessDialogKey(System.Windows.Forms.Keys keyData)
{
switch ((keyData))
{
case Keys.Control:
{
return true;
}
case Keys.Alt | Keys.F4:
{
return true;
}
case Keys.Alt | Keys.Control | Keys.Delete:
{
return true;
}
case Keys.Control | Keys.Q:
{
return true;
}
}
return base.ProcessDialogKey(keyData);
}
int tries;
bool approveClose;
private void Form1_Load(object sender, EventArgs e)
{
txtPassword.Left = (int)(this.Width / 2) - (int)(txtPassword.Width / 2);
txtPassword.Top = (int)(this.Height / 2) - (int)(txtPassword.Height / 2);
}
private void txtPassword_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == Convert.ToChar(Keys.Enter))
{
if (txtPassword.Text == "laptrinhvb")
{
approveClose = true;
this.Close();
}
else
{
tries++;
txtPassword.Text = string.Empty;
if (tries >= 3)
{
txtPassword.Enabled = false;
txtPassword.Visible = false;
}
}
}
}
private void SimpleLock_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F7 && tries >= 3)
{
tries = 0;
txtPassword.Enabled = true;
txtPassword.Visible = true;
txtPassword.Focus();
}
}
private void layerTimer_Tick(object sender, EventArgs e)
{
this.BringToFront();
SendKeys.Send("{ESC}");
if (!txtPassword.Focused) txtPassword.Focus();
}
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
}
}
}
Mật khẩu đóng ứng dụng demo app trên là: laptrinhvb
p/s: nhớ đừng nhập mật khẩu sai quá 3 lần nhé các bạn.
Thanks for watching!