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.
38 lines
666 B
38 lines
666 B
3 years ago
|
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();
|
||
|
}
|
||
|
}
|
||
|
}
|