print_form.cs

来自「人力管理系统」· CS 代码 · 共 44 行

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

namespace rsMange
{
    public partial class Print_Form : Form
    {
        public Print_Form()
        {
            InitializeComponent();
        }

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

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

        private void button1_Click(object sender, EventArgs e)
        {
            Operate_View_Xinxi op_view = new Operate_View_Xinxi();
            Operate_Xinxibiao op_xinxi = new Operate_Xinxibiao();
            //DataTable dt = op_view.SelectViewXinxi();
           DataTable dt = op_xinxi.SelectXinxibiao2();
            Reportview_Form f = new Reportview_Form(dt);
            f.Show();
        }

        private void Print_Form_Load(object sender, EventArgs e)
        {

        }
    }
}

⌨️ 快捷键说明

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