TakePictureControl.Designer.cs
5.69 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
namespace MoyaSignup
{
partial class TakePictureControl
{
/// <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 Component 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.pbIncoming = new System.Windows.Forms.PictureBox();
this.btnTakePic = new System.Windows.Forms.Button();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.pictureTakenLabel = new System.Windows.Forms.Label();
this.secondsLabel = new System.Windows.Forms.Label();
this.takePictureTimer = new System.Windows.Forms.Timer(this.components);
((System.ComponentModel.ISupportInitialize)(this.pbIncoming)).BeginInit();
this.SuspendLayout();
//
// pbIncoming
//
this.pbIncoming.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pbIncoming.Location = new System.Drawing.Point(5, 3);
this.pbIncoming.Name = "pbIncoming";
this.pbIncoming.Size = new System.Drawing.Size(640, 360);
this.pbIncoming.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pbIncoming.TabIndex = 119;
this.pbIncoming.TabStop = false;
//
// btnTakePic
//
this.btnTakePic.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnTakePic.Location = new System.Drawing.Point(176, 369);
this.btnTakePic.Name = "btnTakePic";
this.btnTakePic.Size = new System.Drawing.Size(299, 36);
this.btnTakePic.TabIndex = 120;
this.btnTakePic.Text = "Ota kuva";
this.btnTakePic.UseVisualStyleBackColor = true;
this.btnTakePic.Click += new System.EventHandler(this.btnTakePic_Click_1);
this.btnTakePic.KeyUp += new System.Windows.Forms.KeyEventHandler(this.btnTakePic_KeyUp);
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// pictureTakenLabel
//
this.pictureTakenLabel.AutoSize = true;
this.pictureTakenLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.pictureTakenLabel.Location = new System.Drawing.Point(203, 408);
this.pictureTakenLabel.Name = "pictureTakenLabel";
this.pictureTakenLabel.Size = new System.Drawing.Size(244, 20);
this.pictureTakenLabel.TabIndex = 121;
this.pictureTakenLabel.Text = "Kuva otetaan automaattisesti";
this.pictureTakenLabel.Visible = false;
//
// secondsLabel
//
this.secondsLabel.AutoSize = true;
this.secondsLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.secondsLabel.Location = new System.Drawing.Point(279, 428);
this.secondsLabel.Name = "secondsLabel";
this.secondsLabel.Size = new System.Drawing.Size(93, 20);
this.secondsLabel.TabIndex = 122;
this.secondsLabel.Text = "%s päästä";
this.secondsLabel.Visible = false;
//
// takePictureTimer
//
this.takePictureTimer.Interval = 1000;
this.takePictureTimer.Tick += new System.EventHandler(this.takePictureTimer_Tick);
//
// TakePictureControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.secondsLabel);
this.Controls.Add(this.pictureTakenLabel);
this.Controls.Add(this.btnTakePic);
this.Controls.Add(this.pbIncoming);
this.Name = "TakePictureControl";
this.Size = new System.Drawing.Size(650, 455);
this.Load += new System.EventHandler(this.TakePictureControl_Load);
this.VisibleChanged += new System.EventHandler(this.TakePictureControl_VisibleChanged);
this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.TakePictureControl_KeyUp);
((System.ComponentModel.ISupportInitialize)(this.pbIncoming)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pbIncoming;
private System.Windows.Forms.Button btnTakePic;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Label pictureTakenLabel;
private System.Windows.Forms.Label secondsLabel;
private System.Windows.Forms.Timer takePictureTimer;
}
}