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

📄 print_form.cs

📁 人力管理系统
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -