FormPrintView.cs 744 字节
using OnlineStore.DeviceLibrary;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace OnlineStore.XLRStore.inputForm
{
    public partial class FormPrintView : Form
    {
        public FormPrintView()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            pictureBox1.Image = StoreManager.XLRStore.inputEquip.PrintView();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            StoreManager.XLRStore.inputEquip.PrintOnce();
        }
    }
}