You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
857 B
32 lines
857 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using DevExpress.XtraEditors;
|
|
|
|
namespace ICSSoft.Frame.APP.Quality_Management
|
|
{
|
|
public partial class FormICSTRACK : DevExpress.XtraEditors.XtraForm
|
|
{
|
|
public FormICSTRACK()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btnOutPut_Click(object sender, EventArgs e)
|
|
{
|
|
//try
|
|
//{
|
|
// FormOutExcel foe = new FormOutExcel(this.Tag.ToString(), grdDetail);
|
|
// foe.ShowDialog();
|
|
//}
|
|
//catch (Exception ex)
|
|
//{
|
|
// MessageBox.Show("异常:" + ex.Message, "异常", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|
//}
|
|
}
|
|
}
|
|
}
|