-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSharpUpdateInfoForm.Designer.cs
More file actions
125 lines (119 loc) · 5.64 KB
/
SharpUpdateInfoForm.Designer.cs
File metadata and controls
125 lines (119 loc) · 5.64 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
namespace SharpUpdate
{
partial class SharpUpdateInfoForm
{
/// <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.pictureBox = new System.Windows.Forms.PictureBox();
this.lblVersions = new System.Windows.Forms.Label();
this.txtDescription = new System.Windows.Forms.RichTextBox();
this.lblDescription = new System.Windows.Forms.Label();
this.btnBack = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
this.SuspendLayout();
//
// pictureBox
//
this.pictureBox.Image = global::SharpUpdate.Properties.Resources.update;
this.pictureBox.Location = new System.Drawing.Point(12, 12);
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size(80, 80);
this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
//
// lblVersions
//
this.lblVersions.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lblVersions.Location = new System.Drawing.Point(104, 25);
this.lblVersions.Name = "lblVersions";
this.lblVersions.Size = new System.Drawing.Size(168, 54);
this.lblVersions.TabIndex = 1;
this.lblVersions.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// txtDescription
//
this.txtDescription.BackColor = System.Drawing.SystemColors.Control;
this.txtDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtDescription.Cursor = System.Windows.Forms.Cursors.Default;
this.txtDescription.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.txtDescription.Location = new System.Drawing.Point(12, 116);
this.txtDescription.Name = "txtDescription";
this.txtDescription.ReadOnly = true;
this.txtDescription.Size = new System.Drawing.Size(260, 96);
this.txtDescription.TabIndex = 2;
this.txtDescription.TabStop = false;
this.txtDescription.Text = "";
this.txtDescription.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtDescription_KeyDown);
//
// lblDescription
//
this.lblDescription.AutoSize = true;
this.lblDescription.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.lblDescription.Location = new System.Drawing.Point(9, 100);
this.lblDescription.Name = "lblDescription";
this.lblDescription.Size = new System.Drawing.Size(66, 13);
this.lblDescription.TabIndex = 3;
this.lblDescription.Text = "Description";
//
// btnBack
//
this.btnBack.Font = new System.Drawing.Font("Segoe UI", 8.25F);
this.btnBack.Location = new System.Drawing.Point(105, 223);
this.btnBack.Name = "btnBack";
this.btnBack.Size = new System.Drawing.Size(75, 23);
this.btnBack.TabIndex = 4;
this.btnBack.TabStop = false;
this.btnBack.Text = "Back";
this.btnBack.UseVisualStyleBackColor = true;
this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
//
// SharpUpdateInfoForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 255);
this.Controls.Add(this.btnBack);
this.Controls.Add(this.lblDescription);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.lblVersions);
this.Controls.Add(this.pictureBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "SharpUpdateInfoForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox;
private System.Windows.Forms.Label lblVersions;
private System.Windows.Forms.RichTextBox txtDescription;
private System.Windows.Forms.Label lblDescription;
private System.Windows.Forms.Button btnBack;
}
}