-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScreenBlock.Designer.cs
More file actions
138 lines (132 loc) · 5.62 KB
/
ScreenBlock.Designer.cs
File metadata and controls
138 lines (132 loc) · 5.62 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
namespace DayTimer
{
partial class ScreenBlock
{
/// <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.components = new System.ComponentModel.Container();
this.workButton = new System.Windows.Forms.Button();
this.pauzeButton = new System.Windows.Forms.Button();
this.timer = new System.Windows.Forms.Timer(this.components);
this.numericUpDown = new System.Windows.Forms.NumericUpDown();
this.panel1 = new System.Windows.Forms.Panel();
this.debug = new System.Windows.Forms.Label();
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).BeginInit();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// workButton
//
this.workButton.DialogResult = System.Windows.Forms.DialogResult.OK;
this.workButton.Location = new System.Drawing.Point(3, 3);
this.workButton.Name = "workButton";
this.workButton.Size = new System.Drawing.Size(75, 23);
this.workButton.TabIndex = 0;
this.workButton.Text = "Work";
this.workButton.UseVisualStyleBackColor = true;
//
// pauzeButton
//
this.pauzeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.pauzeButton.Location = new System.Drawing.Point(136, 3);
this.pauzeButton.Name = "pauzeButton";
this.pauzeButton.Size = new System.Drawing.Size(75, 23);
this.pauzeButton.TabIndex = 1;
this.pauzeButton.Text = "Snooze";
this.pauzeButton.UseVisualStyleBackColor = true;
//
// timer
//
this.timer.Enabled = true;
this.timer.Interval = 1000;
this.timer.Tick += new System.EventHandler(this.timer_Tick);
//
// numericUpDown
//
this.numericUpDown.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.numericUpDown.Location = new System.Drawing.Point(84, 8);
this.numericUpDown.Minimum = new decimal(new int[] {
1,
0,
0,
0});
this.numericUpDown.Name = "numericUpDown";
this.numericUpDown.Size = new System.Drawing.Size(46, 16);
this.numericUpDown.TabIndex = 2;
this.numericUpDown.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
this.numericUpDown.Value = new decimal(new int[] {
5,
0,
0,
0});
this.numericUpDown.ValueChanged += new System.EventHandler(this.numericUpDown_ValueChanged);
//
// panel1
//
this.panel1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.panel1.Controls.Add(this.workButton);
this.panel1.Controls.Add(this.pauzeButton);
this.panel1.Controls.Add(this.numericUpDown);
this.panel1.Location = new System.Drawing.Point(1, 24);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(214, 29);
this.panel1.TabIndex = 3;
//
// debug
//
this.debug.Anchor = System.Windows.Forms.AnchorStyles.None;
this.debug.Location = new System.Drawing.Point(1, 9);
this.debug.Name = "debug";
this.debug.Size = new System.Drawing.Size(214, 12);
this.debug.TabIndex = 4;
this.debug.Text = "label1";
this.debug.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ScreenBlock
//
this.AcceptButton = this.workButton;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.pauzeButton;
this.ClientSize = new System.Drawing.Size(217, 76);
this.Controls.Add(this.debug);
this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "ScreenBlock";
this.Text = "ScreenBlock";
((System.ComponentModel.ISupportInitialize)(this.numericUpDown)).EndInit();
this.panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button workButton;
private System.Windows.Forms.Button pauzeButton;
private System.Windows.Forms.Timer timer;
private System.Windows.Forms.NumericUpDown numericUpDown;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label debug;
}
}