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.
37 lines
666 B
37 lines
666 B
using System;
|
|
using System.Windows.Forms;
|
|
|
|
//using Ionic.Zip;
|
|
|
|
|
|
namespace QMAPP.WinForm
|
|
{
|
|
public partial class FormFoundUpdate : Form
|
|
{
|
|
|
|
public FormFoundUpdate(string desc)
|
|
{
|
|
InitializeComponent();
|
|
txtDesc.Text = desc;
|
|
}
|
|
|
|
|
|
|
|
|
|
private void btnCancel_Click(object sender, EventArgs e)
|
|
{
|
|
Close();
|
|
}
|
|
|
|
private void FormAutoUpdate_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void btnOk_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
}
|
|
}
|
|
|