hello.cs

来自「一个简单易懂的程序 看了就会 不会问我 肯定会的」· CS 代码 · 共 28 行

CS
28
字号
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class hello : Form
    {
        public hello()
        {
            InitializeComponent();
        }

        private void hello_Load(object sender, EventArgs e)
        {

        }

        private void hello_MouseEnter(object sender, EventArgs e)
        {

        }
    }
}

⌨️ 快捷键说明

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