-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.Designer.cs
More file actions
112 lines (104 loc) · 4.56 KB
/
Form1.Designer.cs
File metadata and controls
112 lines (104 loc) · 4.56 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
namespace CopyQueue
{
partial class Form1
{
/// <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.cmsIcon = new System.Windows.Forms.ContextMenuStrip(this.components);
this.stopSnippetRecordingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.showSnipets = new System.Windows.Forms.ToolStripMenuItem();
this.Exit = new System.Windows.Forms.ToolStripMenuItem();
this.selectSnippet = new System.Windows.Forms.ToolStripMenuItem();
this.help = new System.Windows.Forms.ToolStripMenuItem();
this.cmsIcon.SuspendLayout();
this.SuspendLayout();
//
// cmsIcon
//
this.cmsIcon.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.selectSnippet,
this.showSnipets,
this.stopSnippetRecordingToolStripMenuItem,
this.help,
this.Exit});
this.cmsIcon.Name = "cmsIcon";
this.cmsIcon.Size = new System.Drawing.Size(159, 136);
//
// stopSnippetRecordingToolStripMenuItem
//
this.stopSnippetRecordingToolStripMenuItem.Checked = true;
this.stopSnippetRecordingToolStripMenuItem.CheckOnClick = true;
this.stopSnippetRecordingToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.stopSnippetRecordingToolStripMenuItem.Name = "stopSnippetRecordingToolStripMenuItem";
this.stopSnippetRecordingToolStripMenuItem.Size = new System.Drawing.Size(158, 22);
this.stopSnippetRecordingToolStripMenuItem.Text = "Record snippets";
this.stopSnippetRecordingToolStripMenuItem.Click += new System.EventHandler(this.stopSnippetRecordingToolStripMenuItem_Click);
//
// showSnipets
//
this.showSnipets.Name = "showSnipets";
this.showSnipets.Size = new System.Drawing.Size(158, 22);
this.showSnipets.Text = "Show snippets";
//
// Exit
//
this.Exit.Name = "Exit";
this.Exit.Size = new System.Drawing.Size(158, 22);
this.Exit.Text = "Exit";
this.Exit.Click += new System.EventHandler(this.Exit_Click);
//
// selectSnippet
//
this.selectSnippet.Name = "selectSnippet";
this.selectSnippet.Size = new System.Drawing.Size(158, 22);
this.selectSnippet.Text = "Select snippet";
//
// help
//
this.help.Name = "help";
this.help.Size = new System.Drawing.Size(158, 22);
this.help.Text = "Help";
this.help.Click += new System.EventHandler(this.help_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 261);
this.Name = "Form1";
this.Text = "Form1";
this.Load += new System.EventHandler(this.Form1_Load);
this.cmsIcon.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip cmsIcon;
private System.Windows.Forms.ToolStripMenuItem showSnipets;
private System.Windows.Forms.ToolStripMenuItem Exit;
private System.Windows.Forms.ToolStripMenuItem stopSnippetRecordingToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem selectSnippet;
private System.Windows.Forms.ToolStripMenuItem help;
}
}