-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathForm1.cs
46 lines (40 loc) · 1.38 KB
/
Form1.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
using System;
using System.Globalization;
using System.Windows.Forms;
namespace BpacBarcode
{
public partial class BarcodeForm : Form
{
public BarcodeForm()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
var args = Environment.GetCommandLineArgs();
if (args.GetLength(0) >= 3)
{
var exitCode = new PrinterApi(args[1], args[2], args.Length > 3 ? args[3] : null, args.Length > 4 ? Int32.Parse(args[4]) : 1).Print();
Close();
Program.ExitApplication(exitCode);
}
}
private void btnPrint_Click(object sender, EventArgs e)
{
(new PrinterApi(txtTitle.Text, txtBarcode.Text, timestamp.Value.ToString("o"), (int)cntCopies.Value)).Print();
}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
switch (keyData)
{
case Keys.Escape:
Program.ExitApplication();
break;
case Keys.Enter:
(new PrinterApi(txtTitle.Text, txtBarcode.Text, timestamp.Value.ToString(CultureInfo.InvariantCulture), (int)cntCopies.Value)).Print();
break;
}
return base.ProcessCmdKey(ref msg, keyData);
}
}
}