⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 开发PDA软件 致力于共同努力
💻 CS
字号:
using System;
using System.Drawing;
using System.Windows.Forms;

namespace ReadonlyTBTrick
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            textBox1.KeyPress += new KeyPressEventHandler(textBox1_KeyPress);
        }

        void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            e.Handled = true;
        }


        private void menuItem3_Click(object sender, EventArgs e)
        {
            textBox1.ForeColor = Color.RoyalBlue;
        }

        private void menuItem4_Click(object sender, EventArgs e)
        {
            textBox1.ForeColor = Color.Red;
        }

        private void textBox1_GotFocus(object sender, EventArgs e)
        {
           // this.Focus();
        }


    }
}

⌨️ 快捷键说明

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