-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormulario_Rolplay.Designer.cs
More file actions
118 lines (111 loc) · 5.69 KB
/
Formulario_Rolplay.Designer.cs
File metadata and controls
118 lines (111 loc) · 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
namespace REcoSample
{
partial class Formulario_Rolplay
{
/// <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.label1 = new System.Windows.Forms.Label();
this.pictureBoxBabyYoda = new System.Windows.Forms.PictureBox();
this.pictureBoxGameOver = new System.Windows.Forms.PictureBox();
this.pictureBoxIA = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxBabyYoda)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGameOver)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIA)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 28F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(45, 93);
this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(0, 54);
this.label1.TabIndex = 0;
//
// pictureBoxBabyYoda
//
this.pictureBoxBabyYoda.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxBabyYoda.Enabled = false;
this.pictureBoxBabyYoda.Image = global::REcoSample.Properties.Resources.babyYoda;
this.pictureBoxBabyYoda.Location = new System.Drawing.Point(1014, 237);
this.pictureBoxBabyYoda.Name = "pictureBoxBabyYoda";
this.pictureBoxBabyYoda.Size = new System.Drawing.Size(198, 289);
this.pictureBoxBabyYoda.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBoxBabyYoda.TabIndex = 4;
this.pictureBoxBabyYoda.TabStop = false;
this.pictureBoxBabyYoda.Visible = false;
//
// pictureBoxGameOver
//
this.pictureBoxGameOver.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pictureBoxGameOver.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxGameOver.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.pictureBoxGameOver.Image = global::REcoSample.Properties.Resources.gameover;
this.pictureBoxGameOver.Location = new System.Drawing.Point(486, 237);
this.pictureBoxGameOver.Margin = new System.Windows.Forms.Padding(2);
this.pictureBoxGameOver.Name = "pictureBoxGameOver";
this.pictureBoxGameOver.Size = new System.Drawing.Size(760, 473);
this.pictureBoxGameOver.TabIndex = 3;
this.pictureBoxGameOver.TabStop = false;
//
// pictureBoxIA
//
this.pictureBoxIA.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBoxIA.Image = global::REcoSample.Properties.Resources.ia;
this.pictureBoxIA.Location = new System.Drawing.Point(0, 0);
this.pictureBoxIA.Name = "pictureBoxIA";
this.pictureBoxIA.Size = new System.Drawing.Size(1283, 675);
this.pictureBoxIA.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBoxIA.TabIndex = 1;
this.pictureBoxIA.TabStop = false;
//
// Formulario_Rolplay
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1283, 675);
this.Controls.Add(this.pictureBoxBabyYoda);
this.Controls.Add(this.pictureBoxGameOver);
this.Controls.Add(this.pictureBoxIA);
this.Controls.Add(this.label1);
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "Formulario_Rolplay";
this.Text = "Minijuego de Rol";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxBabyYoda)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxGameOver)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxIA)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBoxIA;
private System.Windows.Forms.PictureBox pictureBoxGameOver;
private System.Windows.Forms.PictureBox pictureBoxBabyYoda;
}
}