-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
110 lines (103 loc) · 4.69 KB
/
Copy pathForm1.Designer.cs
File metadata and controls
110 lines (103 loc) · 4.69 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
//
// Swiss QR Bill Generator for .NET
// Copyright (c) 2021 Manuel Bleichenbacher
// Licensed under MIT License
// https://opensource.org/licenses/MIT
//
namespace Codecrete.SwissQRBill.Examples.WindowsForms
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.titleLabel = new System.Windows.Forms.Label();
this.qrBillControl1 = new Codecrete.SwissQRBill.Examples.WindowsForms.QrBillControl();
this.printButton = new System.Windows.Forms.Button();
this.copyButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// titleLabel
//
this.titleLabel.AutoSize = true;
this.titleLabel.Font = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
this.titleLabel.Location = new System.Drawing.Point(39, 31);
this.titleLabel.Name = "titleLabel";
this.titleLabel.Size = new System.Drawing.Size(249, 51);
this.titleLabel.TabIndex = 0;
this.titleLabel.Text = "Swiss QR Bill";
//
// qrBillControl1
//
this.qrBillControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.qrBillControl1.Location = new System.Drawing.Point(39, 112);
this.qrBillControl1.Name = "qrBillControl1";
this.qrBillControl1.Size = new System.Drawing.Size(1516, 700);
this.qrBillControl1.TabIndex = 1;
this.qrBillControl1.Text = "qrBillControl1";
//
// printButton
//
this.printButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.printButton.Location = new System.Drawing.Point(1405, 846);
this.printButton.Name = "printButton";
this.printButton.Size = new System.Drawing.Size(150, 46);
this.printButton.TabIndex = 2;
this.printButton.Text = "Print";
this.printButton.UseVisualStyleBackColor = true;
this.printButton.Click += new System.EventHandler(this.PrintButton_Click);
//
// copyButton
//
this.copyButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.copyButton.Location = new System.Drawing.Point(1122, 846);
this.copyButton.Name = "copyButton";
this.copyButton.Size = new System.Drawing.Size(244, 46);
this.copyButton.TabIndex = 2;
this.copyButton.Text = "Copy to Clipboard";
this.copyButton.UseVisualStyleBackColor = true;
this.copyButton.Click += new System.EventHandler(this.CopyButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(13F, 32F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1597, 923);
this.Controls.Add(this.copyButton);
this.Controls.Add(this.printButton);
this.Controls.Add(this.qrBillControl1);
this.Controls.Add(this.titleLabel);
this.Name = "Form1";
this.Text = "Swiss QR Bill";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label titleLabel;
private QrBillControl qrBillControl1;
private System.Windows.Forms.Button printButton;
private System.Windows.Forms.Button copyButton;
}
}