-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPointDialog.cs
More file actions
51 lines (41 loc) · 1.08 KB
/
PointDialog.cs
File metadata and controls
51 lines (41 loc) · 1.08 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace LoginTest02
{
public partial class PointDialog : Form
{
//private int userID;
public PointDialog(/*DataHelper helper*/)
{
Debug.WriteLine("PointDialog initializing");
InitializeComponent();
//textBox1.Text = "" + parentModule.userID;
//textBox1.Text = "" + this.userID;
textBox1.Text = "" + DataHelper.userID;
//UserSelectionFinishedEvent.Subscribe(OnUserSelectionFinishedEvent);
}
private void PointDialog_Load(object sender, EventArgs e)
{
}
private void okButton_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.Cancel;
}
/*
public void OnUserSelectionFinishedEvent(UserSelectionFinishedEventArgs e)
{
Debug.WriteLine("PointDialog, caught event, e.userID = " + e.userID);
this.userID = e.userID;
Debug.WriteLine("PointDialog, userID = " + this.userID);
}
*/
}
}