-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSRSstatsGUI.cs
More file actions
32 lines (23 loc) · 790 Bytes
/
SRSstatsGUI.cs
File metadata and controls
32 lines (23 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
using System.Windows.Forms;
namespace DoseObjectiveCheck
{
public partial class SRSstatsGUI : Form
{
public SRSstatsGUI(string[] SRScoverageRequirements)
{
InitializeComponent();
OkayBut.Click += (sender, EventArgs) => { LAMBDALINK(sender, EventArgs, SRScoverageRequirements); };
}
private void OkayBut_Click(object sender, EventArgs args)
{
// MessageBox.Show("Organ: " + org.ToString());
}
void LAMBDALINK(object sender, EventArgs e, string[] SRScoverageRequirements)
{
SRScoverageRequirements[0] = PTVRX.Text;
SRScoverageRequirements[1] = PerVol.Text;
this.Close();
}
}
}