-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathAboutBox.Designer.cs
More file actions
144 lines (137 loc) · 6.41 KB
/
AboutBox.Designer.cs
File metadata and controls
144 lines (137 loc) · 6.41 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
139
140
141
142
143
144
namespace SQLIndexManager.Forms {
partial class AboutBox {
/// <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.labelProductName = new DevExpress.XtraEditors.LabelControl();
this.labelVersion = new DevExpress.XtraEditors.LabelControl();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.labelProductDescription = new DevExpress.XtraEditors.LabelControl();
this.labelGitHubControl = new DevExpress.XtraEditors.HyperlinkLabelControl();
this.labelCopyright = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// labelProductName
//
this.labelProductName.Appearance.Font = new System.Drawing.Font("Tahoma", 10.25F);
this.labelProductName.Appearance.Options.UseFont = true;
this.labelProductName.Location = new System.Drawing.Point(149, 15);
this.labelProductName.Name = "labelProductName";
this.labelProductName.Size = new System.Drawing.Size(84, 17);
this.labelProductName.TabIndex = 0;
this.labelProductName.Text = "ProductName";
//
// labelVersion
//
this.labelVersion.Location = new System.Drawing.Point(275, 14);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(35, 13);
this.labelVersion.TabIndex = 6;
this.labelVersion.Text = "Version";
//
// pictureBox1
//
this.pictureBox1.Image = global::SQLIndexManager.Properties.Resources.icon;
this.pictureBox1.Location = new System.Drawing.Point(12, 7);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(128, 128);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
this.pictureBox1.TabIndex = 9;
this.pictureBox1.TabStop = false;
//
// labelProductDescription
//
this.labelProductDescription.Location = new System.Drawing.Point(149, 39);
this.labelProductDescription.Name = "labelProductDescription";
this.labelProductDescription.Size = new System.Drawing.Size(90, 13);
this.labelProductDescription.TabIndex = 10;
this.labelProductDescription.Text = "ProductDescription";
//
// labelGitHubControl
//
this.labelGitHubControl.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
this.labelGitHubControl.Appearance.ForeColor = System.Drawing.Color.White;
this.labelGitHubControl.Appearance.LinkColor = System.Drawing.Color.White;
this.labelGitHubControl.Appearance.Options.UseFont = true;
this.labelGitHubControl.Appearance.Options.UseForeColor = true;
this.labelGitHubControl.Appearance.Options.UseLinkColor = true;
this.labelGitHubControl.Cursor = System.Windows.Forms.Cursors.Hand;
this.labelGitHubControl.LineColor = System.Drawing.Color.White;
this.labelGitHubControl.LinkBehavior = System.Windows.Forms.LinkBehavior.HoverUnderline;
this.labelGitHubControl.Location = new System.Drawing.Point(149, 113);
this.labelGitHubControl.Name = "labelGitHubControl";
this.labelGitHubControl.Size = new System.Drawing.Size(116, 13);
this.labelGitHubControl.TabIndex = 11;
this.labelGitHubControl.Text = "Git Hub Project Page";
this.labelGitHubControl.HyperlinkClick += new DevExpress.Utils.HyperlinkClickEventHandler(this.GitHub_HyperlinkClick);
//
// labelCopyright
//
this.labelCopyright.Location = new System.Drawing.Point(149, 58);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(47, 13);
this.labelCopyright.TabIndex = 12;
this.labelCopyright.Text = "Copyright";
//
// labelControl1
//
this.labelControl1.Location = new System.Drawing.Point(149, 94);
this.labelControl1.Name = "labelControl1";
this.labelControl1.Size = new System.Drawing.Size(211, 13);
this.labelControl1.TabIndex = 13;
this.labelControl1.Text = "Please visit for updates and documentation:";
//
// AboutBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(492, 155);
this.Controls.Add(this.labelControl1);
this.Controls.Add(this.labelCopyright);
this.Controls.Add(this.labelGitHubControl);
this.Controls.Add(this.labelProductDescription);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.labelVersion);
this.Controls.Add(this.labelProductName);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutBox";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "About";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DevExpress.XtraEditors.LabelControl labelProductName;
private DevExpress.XtraEditors.LabelControl labelVersion;
private System.Windows.Forms.PictureBox pictureBox1;
private DevExpress.XtraEditors.LabelControl labelProductDescription;
private DevExpress.XtraEditors.HyperlinkLabelControl labelGitHubControl;
private DevExpress.XtraEditors.LabelControl labelCopyright;
private DevExpress.XtraEditors.LabelControl labelControl1;
}
}