cpbz_form.cs

来自「饮食管理系统」· CS 代码 · 共 33 行

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

namespace project_beat
{
    public partial class Cpbz_Form : Form
    {
        public Cpbz_Form(string name)
        {
            InitializeComponent();

            this.lblTS.Text = name;
           
        }

        private void button2_Click(object sender, EventArgs e)
        {
            Zjxf_Form f = (Zjxf_Form)this.Owner;
            f.lblBz2.Text = this.comboBox1.Text;
            this.Close();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

⌨️ 快捷键说明

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