Files
ayanova7/source/Plugins/AyaNova.Plugin.V8/Opt.cs
2020-05-11 23:34:17 +00:00

45 lines
1005 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace AyaNova.PlugIn.V8
{
public partial class Opt : Form
{
public bool ExportAssignedDocs { get { return ckExportAssignedDocs.Checked; } }
public Opt()
{
InitializeComponent();
}
private void btnOk_Click(object sender, EventArgs e)
{
btnOk.Enabled = false;
this.DialogResult = DialogResult.OK;
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.Close();
}
private void Opt_Load(object sender, EventArgs e)
{
lblPreRelease.Text = util.PRE_RELEASE_VERSION_STRING;
}
}
}