textbox.cs

来自「独立完成考勤管理软件加打卡系统(C#) 是打卡加管理系统软件 」· CS 代码 · 共 27 行

CS
27
字号
using System;
using System.Windows.Forms;
using System.Collections;
using System.Drawing;
namespace WindowsApplication.MouseStyle
{
	public class TextBox:System.Windows.Forms.TextBox
	{
		public TextBox()
		{
			
		}
		public static void MouseEntered(object sender ,System.EventArgs e)
		{
//            TextBox text=(TextBox)sender;
//			text.BorderStyle=BorderStyle.Fixed3D;
//			text.BackColor=SystemColors.InactiveCaption;
		}
		public static void MouseLeaved(object sender,System.EventArgs e)
		{
//            TextBox text=(TextBox)sender;
//			text.BorderStyle=BorderStyle.FixedSingle;
//			text.BackColor=SystemColors.Window;
		}
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?