-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpenCryptokiSession.Designer.cs
More file actions
118 lines (112 loc) · 3.93 KB
/
Copy pathOpenCryptokiSession.Designer.cs
File metadata and controls
118 lines (112 loc) · 3.93 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
111
112
113
114
115
116
117
118
namespace CryptokiTokenBrowser
{
partial class OpenCryptokiSession
{
/// <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()
{
BtnConfirm = new Button();
BtnCancel = new Button();
groupBox1 = new GroupBox();
RadioRW = new RadioButton();
RadioRO = new RadioButton();
groupBox1.SuspendLayout();
SuspendLayout();
//
// BtnConfirm
//
BtnConfirm.Font = new Font("Segoe UI", 8F);
BtnConfirm.Location = new Point(106, 74);
BtnConfirm.Name = "BtnConfirm";
BtnConfirm.Size = new Size(75, 23);
BtnConfirm.TabIndex = 6;
BtnConfirm.Text = "Confirm";
BtnConfirm.UseVisualStyleBackColor = true;
BtnConfirm.Click += BtnConfirm_Click;
//
// BtnCancel
//
BtnCancel.Font = new Font("Segoe UI", 8F);
BtnCancel.Location = new Point(186, 74);
BtnCancel.Name = "BtnCancel";
BtnCancel.Size = new Size(75, 23);
BtnCancel.TabIndex = 7;
BtnCancel.Text = "Cancel";
BtnCancel.UseVisualStyleBackColor = true;
BtnCancel.Click += BtnCancel_Click;
//
// groupBox1
//
groupBox1.Controls.Add(RadioRW);
groupBox1.Controls.Add(RadioRO);
groupBox1.Location = new Point(12, 12);
groupBox1.Name = "groupBox1";
groupBox1.Size = new Size(249, 54);
groupBox1.TabIndex = 8;
groupBox1.TabStop = false;
groupBox1.Text = "Open Session";
//
// RadioRW
//
RadioRW.AutoSize = true;
RadioRW.Location = new Point(127, 22);
RadioRW.Name = "RadioRW";
RadioRW.Size = new Size(105, 19);
RadioRW.TabIndex = 1;
RadioRW.TabStop = true;
RadioRW.Text = "Read and Write";
RadioRW.UseVisualStyleBackColor = true;
//
// RadioRO
//
RadioRO.AutoSize = true;
RadioRO.Location = new Point(17, 22);
RadioRO.Name = "RadioRO";
RadioRO.Size = new Size(80, 19);
RadioRO.TabIndex = 0;
RadioRO.TabStop = true;
RadioRO.Text = "Read only ";
RadioRO.UseVisualStyleBackColor = true;
//
// OpenCryptokiSession
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(274, 107);
Controls.Add(groupBox1);
Controls.Add(BtnCancel);
Controls.Add(BtnConfirm);
Name = "OpenCryptokiSession";
Text = "Open Cryptoki Session";
groupBox1.ResumeLayout(false);
groupBox1.PerformLayout();
ResumeLayout(false);
}
#endregion
private Button BtnConfirm;
private Button BtnCancel;
private GroupBox groupBox1;
private RadioButton RadioRW;
private RadioButton RadioRO;
}
}