forked from Ylianst/MeshCentralAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotifyForm.Designer.cs
More file actions
98 lines (92 loc) · 4.19 KB
/
Copy pathNotifyForm.Designer.cs
File metadata and controls
98 lines (92 loc) · 4.19 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
namespace MeshAssistant
{
partial class NotifyForm
{
/// <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(NotifyForm));
this.closeButton = new System.Windows.Forms.Button();
this.nameLabel = new System.Windows.Forms.Label();
this.mainPictureBox = new System.Windows.Forms.PictureBox();
this.maintTextBox = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.mainPictureBox)).BeginInit();
this.SuspendLayout();
//
// closeButton
//
resources.ApplyResources(this.closeButton, "closeButton");
this.closeButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.closeButton.Name = "closeButton";
this.closeButton.UseVisualStyleBackColor = true;
this.closeButton.Click += new System.EventHandler(this.closeButton_Click);
//
// nameLabel
//
resources.ApplyResources(this.nameLabel, "nameLabel");
this.nameLabel.ForeColor = System.Drawing.Color.Gainsboro;
this.nameLabel.Name = "nameLabel";
//
// mainPictureBox
//
resources.ApplyResources(this.mainPictureBox, "mainPictureBox");
this.mainPictureBox.Name = "mainPictureBox";
this.mainPictureBox.TabStop = false;
//
// maintTextBox
//
resources.ApplyResources(this.maintTextBox, "maintTextBox");
this.maintTextBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(93)))), ((int)(((byte)(127)))));
this.maintTextBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.maintTextBox.ForeColor = System.Drawing.Color.White;
this.maintTextBox.Name = "maintTextBox";
this.maintTextBox.ReadOnly = true;
//
// NotifyForm
//
this.AcceptButton = this.closeButton;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(79)))), ((int)(((byte)(130)))));
this.CancelButton = this.closeButton;
this.Controls.Add(this.maintTextBox);
this.Controls.Add(this.nameLabel);
this.Controls.Add(this.mainPictureBox);
this.Controls.Add(this.closeButton);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "NotifyForm";
this.TopMost = true;
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.NotifyForm_FormClosed);
((System.ComponentModel.ISupportInitialize)(this.mainPictureBox)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button closeButton;
private System.Windows.Forms.PictureBox mainPictureBox;
private System.Windows.Forms.Label nameLabel;
private System.Windows.Forms.TextBox maintTextBox;
}
}