-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserControl2.Designer.cs
121 lines (105 loc) · 3.99 KB
/
UserControl2.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
110
111
112
113
114
115
116
117
118
119
120
121
using Mobilize.WebMap.Common.Attributes;
using Mobilize.Web.Extensions;
namespace DynamicPets
{
partial class UserControl2
{
[Intercepted]
/// <summary>
/// Required designer variable.
/// </summary>
private
System.ComponentModel.IContainer components { get; set; } = 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);
}
[Mobilize.WebMap.Common.Attributes.Designer]
#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.textBox1 = new Mobilize.Web.TextBox();
this.lbl1 = new Mobilize.Web.Label();
this.button1 = new Mobilize.Web.Button();
this.label1 = new Mobilize.Web.Label();
this.pictureBox1 = new Mobilize.Web.PictureBox();
;
this.SuspendLayout();
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(27, 188);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(242, 20);
this.textBox1.TabIndex = 9;
//
// lbl1
//
this.lbl1.AutoSize = true;
this.lbl1.Location = new System.Drawing.Point(24, 172);
this.lbl1.Name = "lbl1";
this.lbl1.Size = new System.Drawing.Size(188, 13);
this.lbl1.TabIndex = 8;
this.lbl1.Text = "The dog in the photo is thinking in ....?";
//
// button1
//
this.button1.Location = new System.Drawing.Point(256, 240);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(129, 39);
this.button1.TabIndex = 7;
this.button1.Text = "Guess what the dog is thinking?";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new Mobilize.Web.Font("Microsoft Sans Serif", 14F, Mobilize.Web.FontStyle.Bold, Mobilize.Web.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(183, 97);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(211, 24);
this.label1.TabIndex = 6;
this.label1.Text = "Are you a dog lover ?";
//
// pictureBox1
//
this.pictureBox1.Image = "assets/images/DynamicPets.Resources.james_barker_560319_unsplash.png";
this.pictureBox1.Location = new System.Drawing.Point(16, 21);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(161, 110);
this.pictureBox1.SizeMode = Mobilize.Web.PictureBoxSizeMode.StretchImage;
this.Controls.Add(this.textBox1);
this.Controls.Add(this.lbl1);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.Name = "UserControl2";
this.Size = new System.Drawing.Size(400, 300);
}
#endregion
[Intercepted]
private Mobilize.Web.TextBox textBox1 { get; set; }
[Intercepted]
private Mobilize.Web.Label lbl1 { get; set; }
[Intercepted]
private Mobilize.Web.Button button1 { get; set; }
[Intercepted]
private Mobilize.Web.Label label1 { get; set; }
[Intercepted]
private Mobilize.Web.PictureBox pictureBox1 { get; set; }
}
}