forked from ispysoftware/iSpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandButtons.Designer.cs
119 lines (111 loc) · 5.51 KB
/
CommandButtons.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
namespace iSpyApplication
{
partial class CommandButtons
{
/// <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.components = new System.ComponentModel.Container();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.repositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.cb = new iSpyApplication.Controls.CommandButtonControl();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.addToolStripMenuItem,
this.editToolStripMenuItem,
this.removeToolStripMenuItem,
this.repositionToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(131, 92);
this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening);
//
// addToolStripMenuItem
//
this.addToolStripMenuItem.Name = "addToolStripMenuItem";
this.addToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
this.addToolStripMenuItem.Text = "Add";
this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
this.editToolStripMenuItem.Text = "Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
//
// removeToolStripMenuItem
//
this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
this.removeToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
this.removeToolStripMenuItem.Text = "Remove";
this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
//
// repositionToolStripMenuItem
//
this.repositionToolStripMenuItem.Name = "repositionToolStripMenuItem";
this.repositionToolStripMenuItem.Size = new System.Drawing.Size(130, 22);
this.repositionToolStripMenuItem.Text = "Reposition";
this.repositionToolStripMenuItem.Click += new System.EventHandler(this.repositionToolStripMenuItem_Click);
//
// cb
//
this.cb.ContextMenuStrip = this.contextMenuStrip1;
this.cb.Cursor = System.Windows.Forms.Cursors.Hand;
this.cb.Dock = System.Windows.Forms.DockStyle.Fill;
this.cb.Location = new System.Drawing.Point(0, 0);
this.cb.Name = "cb";
this.cb.Size = new System.Drawing.Size(284, 261);
this.cb.TabIndex = 0;
this.cb.MouseClick += new System.Windows.Forms.MouseEventHandler(this.cb_MouseClick);
this.cb.MouseDown += new System.Windows.Forms.MouseEventHandler(this.cb_MouseDown);
//
// CommandButtons
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 261);
this.Controls.Add(this.cb);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.Name = "CommandButtons";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Command Buttons";
this.Load += new System.EventHandler(this.CommandButtons_Load);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private Controls.CommandButtonControl cb;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem repositionToolStripMenuItem;
}
}