49 lines
1.1 KiB
C#
49 lines
1.1 KiB
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 string Tags { get { return edTags.Text; } }
|
|
public int HTTPTimeOut { get { return (int)nTimeOut.Value; } }
|
|
public bool PartNumberNameCombined { get { return rdPartCombined.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)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|