-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmBuildOverlay.Designer.cs
94 lines (87 loc) · 4.46 KB
/
frmBuildOverlay.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
namespace SC2Scrapbook
{
partial class frmBuildOverlay
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBuildOverlay));
this.lblFakeTitle = new System.Windows.Forms.Label();
this.lblContent = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblFakeTitle
//
this.lblFakeTitle.BackColor = System.Drawing.Color.Transparent;
this.lblFakeTitle.Dock = System.Windows.Forms.DockStyle.Top;
this.lblFakeTitle.Location = new System.Drawing.Point(0, 0);
this.lblFakeTitle.Name = "lblFakeTitle";
this.lblFakeTitle.Size = new System.Drawing.Size(383, 31);
this.lblFakeTitle.TabIndex = 0;
this.lblFakeTitle.Click += new System.EventHandler(this.lblFakeTitle_Click);
this.lblFakeTitle.DoubleClick += new System.EventHandler(this.frmOverlay_DoubleClick);
this.lblFakeTitle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lblFakeTitle_MouseDown);
this.lblFakeTitle.MouseUp += new System.Windows.Forms.MouseEventHandler(this.frmOverlay_MouseUp);
//
// lblContent
//
this.lblContent.BackColor = System.Drawing.Color.Transparent;
this.lblContent.Dock = System.Windows.Forms.DockStyle.Fill;
this.lblContent.Location = new System.Drawing.Point(0, 31);
this.lblContent.Name = "lblContent";
this.lblContent.Size = new System.Drawing.Size(383, 280);
this.lblContent.TabIndex = 1;
this.lblContent.Click += new System.EventHandler(this.lblContent_Click);
this.lblContent.DoubleClick += new System.EventHandler(this.frmOverlay_DoubleClick);
//
// frmBuildOverlay
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.DimGray;
this.ClientSize = new System.Drawing.Size(383, 311);
this.Controls.Add(this.lblContent);
this.Controls.Add(this.lblFakeTitle);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmBuildOverlay";
this.Opacity = 0.7D;
this.ShowInTaskbar = false;
this.Text = "Build Order Overlay";
this.TopMost = true;
this.TransparencyKey = System.Drawing.Color.Red;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmOverlay_FormClosing);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmOverlay_FormClosed);
this.Load += new System.EventHandler(this.frmOverlay_Load);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.frmOverlay_Paint);
this.DoubleClick += new System.EventHandler(this.frmOverlay_DoubleClick);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frmOverlay_MouseMove);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.frmOverlay_MouseUp);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label lblFakeTitle;
private System.Windows.Forms.Label lblContent;
}
}