-
Notifications
You must be signed in to change notification settings - Fork 63
/
CropForm.Designer.cs
103 lines (96 loc) · 5.02 KB
/
CropForm.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
namespace WebMConverter
{
partial class CropForm
{
/// <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.pictureBoxVideo = new System.Windows.Forms.PictureBox();
this.buttonConfirm = new System.Windows.Forms.Button();
this.buttonReset = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxVideo)).BeginInit();
this.SuspendLayout();
//
// pictureBoxVideo
//
this.pictureBoxVideo.BackColor = System.Drawing.SystemColors.ControlDark;
this.pictureBoxVideo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBoxVideo.Dock = System.Windows.Forms.DockStyle.Fill;
this.pictureBoxVideo.Location = new System.Drawing.Point(0, 0);
this.pictureBoxVideo.Name = "pictureBoxVideo";
this.pictureBoxVideo.Size = new System.Drawing.Size(624, 441);
this.pictureBoxVideo.TabIndex = 1;
this.pictureBoxVideo.TabStop = false;
this.pictureBoxVideo.Paint += new System.Windows.Forms.PaintEventHandler(this.pictureBoxVideo_Paint);
this.pictureBoxVideo.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBoxVideo_MouseDown);
this.pictureBoxVideo.MouseEnter += new System.EventHandler(this.pictureBoxVideo_MouseEnter);
this.pictureBoxVideo.MouseLeave += new System.EventHandler(this.pictureBoxVideo_MouseLeave);
this.pictureBoxVideo.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxVideo_MouseMove);
this.pictureBoxVideo.MouseUp += new System.Windows.Forms.MouseEventHandler(this.pictureBoxVideo_MouseUp);
this.pictureBoxVideo.Resize += new System.EventHandler(this.pictureBoxVideo_Resize);
//
// buttonConfirm
//
this.buttonConfirm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonConfirm.Location = new System.Drawing.Point(537, 406);
this.buttonConfirm.Name = "buttonConfirm";
this.buttonConfirm.Size = new System.Drawing.Size(75, 23);
this.buttonConfirm.TabIndex = 2;
this.buttonConfirm.Text = "Confirm";
this.buttonConfirm.UseVisualStyleBackColor = true;
this.buttonConfirm.Click += new System.EventHandler(this.buttonConfirm_Click);
//
// buttonReset
//
this.buttonReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonReset.Location = new System.Drawing.Point(456, 406);
this.buttonReset.Name = "buttonReset";
this.buttonReset.Size = new System.Drawing.Size(75, 23);
this.buttonReset.TabIndex = 3;
this.buttonReset.Text = "Reset";
this.buttonReset.UseVisualStyleBackColor = true;
this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
//
// CropForm
//
this.AcceptButton = this.buttonConfirm;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(624, 441);
this.Controls.Add(this.buttonReset);
this.Controls.Add(this.buttonConfirm);
this.Controls.Add(this.pictureBoxVideo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
this.MinimumSize = new System.Drawing.Size(227, 114);
this.Name = "CropForm";
this.Text = "Crop your video";
this.Load += new System.EventHandler(this.CropForm_Load);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxVideo)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBoxVideo;
private System.Windows.Forms.Button buttonConfirm;
private System.Windows.Forms.Button buttonReset;
}
}