This repository was archived by the owner on Feb 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathformShowFrames.Designer.cs
More file actions
135 lines (129 loc) · 6.98 KB
/
formShowFrames.Designer.cs
File metadata and controls
135 lines (129 loc) · 6.98 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
namespace WebMCam
{
partial class FormShowFrames
{
/// <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();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormShowFrames));
this.buttonDone = new System.Windows.Forms.Button();
this.listBoxFrames = new System.Windows.Forms.ListBox();
this.contextMenuStripFrames = new System.Windows.Forms.ContextMenuStrip(this.components);
this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.pictureBoxFrame = new System.Windows.Forms.PictureBox();
this.markToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStripFrames.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxFrame)).BeginInit();
this.SuspendLayout();
//
// buttonDone
//
this.buttonDone.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.buttonDone.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.buttonDone.Location = new System.Drawing.Point(-1, 198);
this.buttonDone.Name = "buttonDone";
this.buttonDone.Size = new System.Drawing.Size(422, 26);
this.buttonDone.TabIndex = 0;
this.buttonDone.Text = "Done";
this.buttonDone.UseVisualStyleBackColor = true;
this.buttonDone.Click += new System.EventHandler(this.buttonDone_Click);
//
// listBoxFrames
//
this.listBoxFrames.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.listBoxFrames.ContextMenuStrip = this.contextMenuStripFrames;
this.listBoxFrames.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.listBoxFrames.FormattingEnabled = true;
this.listBoxFrames.Location = new System.Drawing.Point(0, 0);
this.listBoxFrames.Name = "listBoxFrames";
this.listBoxFrames.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listBoxFrames.Size = new System.Drawing.Size(120, 199);
this.listBoxFrames.TabIndex = 0;
this.listBoxFrames.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBoxFrames_DrawItem);
this.listBoxFrames.SelectedIndexChanged += new System.EventHandler(this.listBoxFrames_SelectedIndexChanged);
this.listBoxFrames.KeyDown += new System.Windows.Forms.KeyEventHandler(this.listBoxFrames_KeyDown);
//
// contextMenuStripFrames
//
this.contextMenuStripFrames.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.deleteToolStripMenuItem,
this.markToolStripMenuItem});
this.contextMenuStripFrames.Name = "contextMenuStripFrames";
this.contextMenuStripFrames.Size = new System.Drawing.Size(108, 48);
//
// deleteToolStripMenuItem
//
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.deleteToolStripMenuItem.Text = "Delete";
this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
//
// pictureBoxFrame
//
this.pictureBoxFrame.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pictureBoxFrame.Location = new System.Drawing.Point(121, 0);
this.pictureBoxFrame.Name = "pictureBoxFrame";
this.pictureBoxFrame.Size = new System.Drawing.Size(300, 199);
this.pictureBoxFrame.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.pictureBoxFrame.TabIndex = 2;
this.pictureBoxFrame.TabStop = false;
//
// markToolStripMenuItem
//
this.markToolStripMenuItem.Name = "markToolStripMenuItem";
this.markToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
this.markToolStripMenuItem.Text = "Mark";
this.markToolStripMenuItem.Click += new System.EventHandler(this.markToolStripMenuItem_Click);
//
// FormShowFrames
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(421, 223);
this.Controls.Add(this.pictureBoxFrame);
this.Controls.Add(this.listBoxFrames);
this.Controls.Add(this.buttonDone);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MinimizeBox = false;
this.Name = "FormShowFrames";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "WebMCam Frames";
this.Load += new System.EventHandler(this.formShowFrames_Load);
this.contextMenuStripFrames.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxFrame)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonDone;
private System.Windows.Forms.ListBox listBoxFrames;
private System.Windows.Forms.PictureBox pictureBoxFrame;
private System.Windows.Forms.ContextMenuStrip contextMenuStripFrames;
private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem markToolStripMenuItem;
}
}