common/Ui/GenesisToolBox/frmCalibrationInput.cs
2026-04-23 17:50:07 +02:00

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();
}
}
}