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
119
120
121
122
123
124
|
namespace Sentence_Capitalization
{
partial class sentenceCapitalization
{
/// <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.inputTxtBox = new System.Windows.Forms.TextBox();
this.outputLbl = new System.Windows.Forms.Label();
this.calculateBtn = new System.Windows.Forms.Button();
this.clearBtn = new System.Windows.Forms.Button();
this.exitBtn = new System.Windows.Forms.Button();
this.helpLbl = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// inputTxtBox
//
this.inputTxtBox.Location = new System.Drawing.Point(16, 71);
this.inputTxtBox.Name = "inputTxtBox";
this.inputTxtBox.Size = new System.Drawing.Size(340, 20);
this.inputTxtBox.TabIndex = 0;
this.inputTxtBox.Text = "this is an example sentence.";
//
// outputLbl
//
this.outputLbl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.outputLbl.Location = new System.Drawing.Point(16, 103);
this.outputLbl.Name = "outputLbl";
this.outputLbl.Size = new System.Drawing.Size(340, 23);
this.outputLbl.TabIndex = 1;
this.outputLbl.Text = "?";
this.outputLbl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// calculateBtn
//
this.calculateBtn.Location = new System.Drawing.Point(150, 140);
this.calculateBtn.Name = "calculateBtn";
this.calculateBtn.Size = new System.Drawing.Size(75, 36);
this.calculateBtn.TabIndex = 2;
this.calculateBtn.Text = "Calculate";
this.calculateBtn.UseVisualStyleBackColor = true;
this.calculateBtn.Click += new System.EventHandler(this.calculateBtn_Click);
//
// clearBtn
//
this.clearBtn.Location = new System.Drawing.Point(69, 145);
this.clearBtn.Name = "clearBtn";
this.clearBtn.Size = new System.Drawing.Size(75, 27);
this.clearBtn.TabIndex = 3;
this.clearBtn.Text = "Clear";
this.clearBtn.UseVisualStyleBackColor = true;
this.clearBtn.Click += new System.EventHandler(this.clearBtn_Click);
//
// exitBtn
//
this.exitBtn.Location = new System.Drawing.Point(231, 145);
this.exitBtn.Name = "exitBtn";
this.exitBtn.Size = new System.Drawing.Size(75, 27);
this.exitBtn.TabIndex = 4;
this.exitBtn.Text = "Exit";
this.exitBtn.UseVisualStyleBackColor = true;
this.exitBtn.Click += new System.EventHandler(this.exitBtn_Click);
//
// helpLbl
//
this.helpLbl.AutoSize = true;
this.helpLbl.Location = new System.Drawing.Point(26, 44);
this.helpLbl.Name = "helpLbl";
this.helpLbl.Size = new System.Drawing.Size(323, 13);
this.helpLbl.TabIndex = 5;
this.helpLbl.Text = "Click calculate to make the first letter in every sentence uppercase.";
//
// sentenceCapitalization
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(384, 211);
this.Controls.Add(this.helpLbl);
this.Controls.Add(this.exitBtn);
this.Controls.Add(this.clearBtn);
this.Controls.Add(this.calculateBtn);
this.Controls.Add(this.outputLbl);
this.Controls.Add(this.inputTxtBox);
this.Name = "sentenceCapitalization";
this.Text = "Sentence Capitalization";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox inputTxtBox;
private System.Windows.Forms.Label outputLbl;
private System.Windows.Forms.Button calculateBtn;
private System.Windows.Forms.Button clearBtn;
private System.Windows.Forms.Button exitBtn;
private System.Windows.Forms.Label helpLbl;
}
}
|