34 lines
697 B
C#
34 lines
697 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace GenesisToolBox
|
|
{
|
|
public partial class FrmCalibrationInput : Form
|
|
{
|
|
Double? RefVol;
|
|
Double? RefTime;
|
|
|
|
public Double? getRefVolume()
|
|
{
|
|
return RefVol;
|
|
}
|
|
|
|
public Double? getRefTime()
|
|
{
|
|
return RefTime;
|
|
}
|
|
public FrmCalibrationInput()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void btnOk_Click(Object sender, EventArgs e)
|
|
{
|
|
btnOk.DialogResult = DialogResult.OK;
|
|
RefVol = (Double)nudVol.Value;
|
|
RefTime = (Double)nudTime.Value;
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|