-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmMain.Designer.cs
110 lines (103 loc) · 4.56 KB
/
frmMain.Designer.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
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
namespace WindowsFormsApplication1
{
partial class frmMain
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
this.cbtAtivar = new System.Windows.Forms.CheckBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.rbAfter = new System.Windows.Forms.RadioButton();
this.rbBefore = new System.Windows.Forms.RadioButton();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// cbtAtivar
//
this.cbtAtivar.AutoSize = true;
this.cbtAtivar.Location = new System.Drawing.Point(6, 0);
this.cbtAtivar.Name = "cbtAtivar";
this.cbtAtivar.Size = new System.Drawing.Size(65, 17);
this.cbtAtivar.TabIndex = 1;
this.cbtAtivar.Text = "Activate";
this.cbtAtivar.UseVisualStyleBackColor = true;
this.cbtAtivar.CheckedChanged += new System.EventHandler(this.cbtAtivar_CheckedChanged);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.rbAfter);
this.groupBox1.Controls.Add(this.rbBefore);
this.groupBox1.Controls.Add(this.cbtAtivar);
this.groupBox1.Location = new System.Drawing.Point(12, 12);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(311, 82);
this.groupBox1.TabIndex = 3;
this.groupBox1.TabStop = false;
//
// rbAfter
//
this.rbAfter.AutoSize = true;
this.rbAfter.Location = new System.Drawing.Point(6, 46);
this.rbAfter.Name = "rbAfter";
this.rbAfter.Size = new System.Drawing.Size(187, 17);
this.rbAfter.TabIndex = 3;
this.rbAfter.TabStop = true;
this.rbAfter.Text = "Insert special letter pressing x after";
this.rbAfter.UseVisualStyleBackColor = true;
this.rbAfter.CheckedChanged += new System.EventHandler(this.rbAfter_CheckedChanged);
//
// rbBefore
//
this.rbBefore.AutoSize = true;
this.rbBefore.Checked = true;
this.rbBefore.Location = new System.Drawing.Point(6, 23);
this.rbBefore.Name = "rbBefore";
this.rbBefore.Size = new System.Drawing.Size(196, 17);
this.rbBefore.TabIndex = 2;
this.rbBefore.TabStop = true;
this.rbBefore.Text = "Insert special letter pressing x before";
this.rbBefore.UseVisualStyleBackColor = true;
this.rbBefore.CheckedChanged += new System.EventHandler(this.rbBefore_CheckedChanged);
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(338, 109);
this.Controls.Add(this.groupBox1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmMain";
this.Text = "Esperantilo - github.com/G4BB3R/Esperantilo";
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.CheckBox cbtAtivar;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.RadioButton rbAfter;
private System.Windows.Forms.RadioButton rbBefore;
}
}