forked from Ken98045/On-Guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddCameraDialog.cs
73 lines (65 loc) · 1.78 KB
/
AddCameraDialog.cs
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using System;
using System.IO;
using System.Windows.Forms;
namespace SAAI
{
/// <summary>
/// A simple dialog to get a camera path & prefix.
/// Nothing to see here
/// </summary>
public partial class AddCameraDialog : Form
{
public string CameraFilePath { get; set; }
public string CameraPrefix { get; set; }
public AddCameraDialog()
{
InitializeComponent();
}
private void BrowseButton_Click(object sender, EventArgs e)
{
using (FolderBrowserDialog folderBrowserDialog1 = new FolderBrowserDialog
{
ShowNewFolderButton = false
})
{
folderBrowserDialog1.RootFolder = Environment.SpecialFolder.MyComputer;
DialogResult pathResult = folderBrowserDialog1.ShowDialog();
if (pathResult == DialogResult.OK)
{
pathText.Text = folderBrowserDialog1.SelectedPath;
}
}
}
private void OkButton_Click(object sender, EventArgs e)
{
if (string.IsNullOrEmpty(pathText.Text))
{
MessageBox.Show("The camera file path must not be empty!");
}
else
{
if (Directory.Exists(pathText.Text))
{
if (string.IsNullOrEmpty(prefixText.Text))
{
MessageBox.Show("The camera prefix must not be empty!");
}
else
{
CameraFilePath = pathText.Text;
CameraPrefix = prefixText.Text;
DialogResult = DialogResult.OK;
}
}
else
{
MessageBox.Show("The camera file path directory is not valid!");
}
}
}
private void CancelButton_Click(object sender, EventArgs e)
{
DialogResult = DialogResult.Cancel;
}
}
}