Last active
January 24, 2020 17:51
-
-
Save myfriendtania/ae86d765d6c1e3c3b1cbe5ea5480470e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace WindowsFormsApp1 | |
| { | |
| 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.button1 = new System.Windows.Forms.Button(); | |
| this.button2 = new System.Windows.Forms.Button(); | |
| this.button3 = new System.Windows.Forms.Button(); | |
| this.button4 = new System.Windows.Forms.Button(); | |
| this.button5 = new System.Windows.Forms.Button(); | |
| this.button6 = new System.Windows.Forms.Button(); | |
| this.button7 = new System.Windows.Forms.Button(); | |
| this.groupBox1 = new System.Windows.Forms.GroupBox(); | |
| this.radioButton1 = new System.Windows.Forms.RadioButton(); | |
| this.radioButton2 = new System.Windows.Forms.RadioButton(); | |
| this.label1 = new System.Windows.Forms.Label(); | |
| this.groupBox1.SuspendLayout(); | |
| this.SuspendLayout(); | |
| // | |
| // button1 | |
| // | |
| this.button1.Location = new System.Drawing.Point(12, 12); | |
| this.button1.Name = "button1"; | |
| this.button1.Size = new System.Drawing.Size(75, 23); | |
| this.button1.TabIndex = 0; | |
| this.button1.Text = "Hour"; | |
| this.button1.UseVisualStyleBackColor = true; | |
| this.button1.Click += new System.EventHandler(this.button1_Click); | |
| // | |
| // button2 | |
| // | |
| this.button2.Location = new System.Drawing.Point(93, 12); | |
| this.button2.Name = "button2"; | |
| this.button2.Size = new System.Drawing.Size(75, 23); | |
| this.button2.TabIndex = 1; | |
| this.button2.Text = "Minute"; | |
| this.button2.UseVisualStyleBackColor = true; | |
| // | |
| // button3 | |
| // | |
| this.button3.Location = new System.Drawing.Point(174, 12); | |
| this.button3.Name = "button3"; | |
| this.button3.Size = new System.Drawing.Size(75, 23); | |
| this.button3.TabIndex = 2; | |
| this.button3.Text = "Second"; | |
| this.button3.UseVisualStyleBackColor = true; | |
| // | |
| // button4 | |
| // | |
| this.button4.Location = new System.Drawing.Point(255, 12); | |
| this.button4.Name = "button4"; | |
| this.button4.Size = new System.Drawing.Size(75, 23); | |
| this.button4.TabIndex = 3; | |
| this.button4.Text = "On"; | |
| this.button4.UseVisualStyleBackColor = true; | |
| // | |
| // button5 | |
| // | |
| this.button5.Location = new System.Drawing.Point(335, 12); | |
| this.button5.Name = "button5"; | |
| this.button5.Size = new System.Drawing.Size(75, 23); | |
| this.button5.TabIndex = 4; | |
| this.button5.Text = "Off"; | |
| this.button5.UseVisualStyleBackColor = true; | |
| // | |
| // button6 | |
| // | |
| this.button6.Location = new System.Drawing.Point(335, 56); | |
| this.button6.Name = "button6"; | |
| this.button6.Size = new System.Drawing.Size(75, 23); | |
| this.button6.TabIndex = 5; | |
| this.button6.Text = "Timer"; | |
| this.button6.UseVisualStyleBackColor = true; | |
| this.button6.Click += new System.EventHandler(this.button6_Click); | |
| // | |
| // button7 | |
| // | |
| this.button7.Location = new System.Drawing.Point(12, 97); | |
| this.button7.Name = "button7"; | |
| this.button7.Size = new System.Drawing.Size(398, 23); | |
| this.button7.TabIndex = 6; | |
| this.button7.Text = "Snooze"; | |
| this.button7.UseVisualStyleBackColor = true; | |
| // | |
| // groupBox1 | |
| // | |
| this.groupBox1.Controls.Add(this.radioButton1); | |
| this.groupBox1.Controls.Add(this.radioButton2); | |
| this.groupBox1.Location = new System.Drawing.Point(163, 41); | |
| this.groupBox1.Name = "groupBox1"; | |
| this.groupBox1.Size = new System.Drawing.Size(100, 50); | |
| this.groupBox1.TabIndex = 7; | |
| this.groupBox1.TabStop = false; | |
| this.groupBox1.Text = "AM/PM"; | |
| // | |
| // radioButton1 | |
| // | |
| this.radioButton1.AutoSize = true; | |
| this.radioButton1.Location = new System.Drawing.Point(7, 22); | |
| this.radioButton1.Name = "radioButton1"; | |
| this.radioButton1.Size = new System.Drawing.Size(44, 19); | |
| this.radioButton1.TabIndex = 8; | |
| this.radioButton1.TabStop = true; | |
| this.radioButton1.Text = "AM"; | |
| this.radioButton1.UseVisualStyleBackColor = true; | |
| // | |
| // radioButton2 | |
| // | |
| this.radioButton2.AutoSize = true; | |
| this.radioButton2.Location = new System.Drawing.Point(51, 22); | |
| this.radioButton2.Name = "radioButton2"; | |
| this.radioButton2.Size = new System.Drawing.Size(43, 19); | |
| this.radioButton2.TabIndex = 9; | |
| this.radioButton2.TabStop = true; | |
| this.radioButton2.Text = "PM"; | |
| this.radioButton2.UseVisualStyleBackColor = true; | |
| // | |
| // label1 | |
| // | |
| this.label1.AutoSize = true; | |
| this.label1.BackColor = System.Drawing.Color.Black; | |
| this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; | |
| this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
| this.label1.ForeColor = System.Drawing.Color.Silver; | |
| this.label1.Location = new System.Drawing.Point(13, 60); | |
| this.label1.Name = "label1"; | |
| this.label1.Size = new System.Drawing.Size(74, 23); | |
| this.label1.TabIndex = 8; | |
| this.label1.Text = "00:00:00"; | |
| // | |
| // Form1 | |
| // | |
| this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); | |
| this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
| this.ClientSize = new System.Drawing.Size(422, 131); | |
| this.Controls.Add(this.label1); | |
| this.Controls.Add(this.groupBox1); | |
| this.Controls.Add(this.button7); | |
| this.Controls.Add(this.button6); | |
| this.Controls.Add(this.button5); | |
| this.Controls.Add(this.button4); | |
| this.Controls.Add(this.button3); | |
| this.Controls.Add(this.button2); | |
| this.Controls.Add(this.button1); | |
| this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
| this.Name = "Form1"; | |
| this.Text = "Alarm Clock"; | |
| this.groupBox1.ResumeLayout(false); | |
| this.groupBox1.PerformLayout(); | |
| this.ResumeLayout(false); | |
| this.PerformLayout(); | |
| } | |
| #endregion | |
| private System.Windows.Forms.Button button1; | |
| private System.Windows.Forms.Button button2; | |
| private System.Windows.Forms.Button button3; | |
| private System.Windows.Forms.Button button4; | |
| private System.Windows.Forms.Button button5; | |
| private System.Windows.Forms.Button button6; | |
| private System.Windows.Forms.Button button7; | |
| private System.Windows.Forms.GroupBox groupBox1; | |
| private System.Windows.Forms.RadioButton radioButton1; | |
| private System.Windows.Forms.RadioButton radioButton2; | |
| private System.Windows.Forms.Label label1; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment