This commit is contained in:
2020-05-02 14:28:36 +00:00
parent a27790308a
commit 3ff4d3d11c
5 changed files with 2418 additions and 3 deletions

View File

@@ -0,0 +1,39 @@
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)
{
this.DialogResult = DialogResult.OK;
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.Close();
}
}
}