• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn cấm sao chép và chuột phải trong C# Windows Forms

Admin

Well-Known Member
Staff member
Administrator
Chào các bạn, hôm nay mình xin chia sẻ code chống sao chép trong C#
49815985627_fbee5a7432_o.png

Bạn tạo sự kiện (Events) biểu tượng tia sét trong Properties là KeyDownMouseDown dán code sau nhé
Code này sẽ chống người dùng nhấn phím ctrl và dùng chuột phải
C#:
private void vanBan_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.Control == true)
            {
                MessageBox.Show("Cấm sao chép nhé bạn");
            }
        }
        private void vanBan_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                MessageBox.Show("Đừng sao chép, không sao chép được đâu", "Code bởi Nguyễn Hữu Thắng");
            }
        }
Chúc bạn thành công!
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top