-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathComponentControl.Designer.cs
150 lines (144 loc) · 7.45 KB
/
ComponentControl.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
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
145
146
147
148
149
150
namespace VisualAzureStudio
{
partial class ComponentControl
{
/// <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 Component 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.components = new System.ComponentModel.Container();
this.ComponentTypeImage = new System.Windows.Forms.PictureBox();
this.ComponnentTypeLabel = new System.Windows.Forms.Label();
this.ResourceGroupLabel = new System.Windows.Forms.Label();
this.NameLabel = new System.Windows.Forms.Label();
this.ContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ConnectToMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
((System.ComponentModel.ISupportInitialize)(this.ComponentTypeImage)).BeginInit();
this.ContextMenu.SuspendLayout();
this.SuspendLayout();
//
// ComponentTypeImage
//
this.ComponentTypeImage.Enabled = false;
this.ComponentTypeImage.Location = new System.Drawing.Point(3, 3);
this.ComponentTypeImage.Name = "ComponentTypeImage";
this.ComponentTypeImage.Size = new System.Drawing.Size(32, 32);
this.ComponentTypeImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.ComponentTypeImage.TabIndex = 0;
this.ComponentTypeImage.TabStop = false;
this.ComponentTypeImage.MouseDown += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseDown);
//
// ComponnentTypeLabel
//
this.ComponnentTypeLabel.AutoSize = true;
this.ComponnentTypeLabel.Cursor = System.Windows.Forms.Cursors.Arrow;
this.ComponnentTypeLabel.Location = new System.Drawing.Point(3, 39);
this.ComponnentTypeLabel.Name = "ComponnentTypeLabel";
this.ComponnentTypeLabel.Size = new System.Drawing.Size(92, 13);
this.ComponnentTypeLabel.TabIndex = 1;
this.ComponnentTypeLabel.Text = "Component Name";
this.ComponnentTypeLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseDown);
this.ComponnentTypeLabel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseMove);
this.ComponnentTypeLabel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseUp);
//
// ResourceGroupLabel
//
this.ResourceGroupLabel.AutoSize = true;
this.ResourceGroupLabel.Cursor = System.Windows.Forms.Cursors.Arrow;
this.ResourceGroupLabel.Location = new System.Drawing.Point(3, 56);
this.ResourceGroupLabel.Name = "ResourceGroupLabel";
this.ResourceGroupLabel.Size = new System.Drawing.Size(29, 13);
this.ResourceGroupLabel.TabIndex = 2;
this.ResourceGroupLabel.Text = "RG: ";
//
// NameLabel
//
this.NameLabel.AutoSize = true;
this.NameLabel.Cursor = System.Windows.Forms.Cursors.Arrow;
this.NameLabel.Location = new System.Drawing.Point(41, 13);
this.NameLabel.Name = "NameLabel";
this.NameLabel.Size = new System.Drawing.Size(17, 13);
this.NameLabel.TabIndex = 3;
this.NameLabel.Text = "\"\"";
//
// ContextMenu
//
this.ContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ConnectToMenuItem,
this.toolStripMenuItem1,
this.deleteToolStripMenuItem});
this.ContextMenu.Name = "ContextMenu";
this.ContextMenu.ShowImageMargin = false;
this.ContextMenu.Size = new System.Drawing.Size(111, 54);
this.ContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenu_Opening);
//
// ConnectToMenuItem
//
this.ConnectToMenuItem.Name = "ConnectToMenuItem";
this.ConnectToMenuItem.Size = new System.Drawing.Size(110, 22);
this.ConnectToMenuItem.Text = "Connect To";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(107, 6);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(110, 22);
this.deleteToolStripMenuItem.Text = "Delete...";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// ComponentControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ContextMenuStrip = this.ContextMenu;
this.Controls.Add(this.NameLabel);
this.Controls.Add(this.ResourceGroupLabel);
this.Controls.Add(this.ComponnentTypeLabel);
this.Controls.Add(this.ComponentTypeImage);
this.Cursor = System.Windows.Forms.Cursors.Hand;
this.Name = "ComponentControl";
this.Size = new System.Drawing.Size(156, 74);
this.LocationChanged += new System.EventHandler(this.ComponentControl_LocationChanged);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseDown);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseMove);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.componentControl_MouseUp);
((System.ComponentModel.ISupportInitialize)(this.ComponentTypeImage)).EndInit();
this.ContextMenu.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
public System.Windows.Forms.PictureBox ComponentTypeImage;
public System.Windows.Forms.Label ComponnentTypeLabel;
public System.Windows.Forms.Label ResourceGroupLabel;
public System.Windows.Forms.Label NameLabel;
private System.Windows.Forms.ContextMenuStrip ContextMenu;
private System.Windows.Forms.ToolStripMenuItem ConnectToMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
}
}