form_find.cs

来自「C#编写的」· CS 代码 · 共 30 行

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

namespace 成绩管理系统_new
{
    public partial class form_Find : Form
    {
        public form_Find(Form newForm)
        {
            InitializeComponent();
            this.mainForm = (From1)newForm;
        }

        private From1 mainForm = new From1();

        private void button1_Click(object sender, EventArgs e)
        {
            this.mainForm.findStr = this.textBox1.Text;
            this.mainForm.find();
            this.Close();
        }
    }
}

⌨️ 快捷键说明

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