-
Notifications
You must be signed in to change notification settings - Fork 0
/
CropForm.Designer.cs
88 lines (81 loc) · 3.96 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
using System;
using System.Windows.Forms;
namespace ImageCropper
{
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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CropForm));
this.labelResolution = new System.Windows.Forms.Label();
this.pictureBoxArea = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxArea)).BeginInit();
this.SuspendLayout();
//
// labelResolution
//
this.labelResolution.AutoSize = true;
this.labelResolution.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
this.labelResolution.Location = new System.Drawing.Point(227, 182);
this.labelResolution.Name = "labelResolution";
this.labelResolution.Size = new System.Drawing.Size(51, 20);
this.labelResolution.TabIndex = 1;
this.labelResolution.Text = "label1";
//
// pictureBoxArea
//
this.pictureBoxArea.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxArea.Location = new System.Drawing.Point(231, 205);
this.pictureBoxArea.Name = "pictureBoxArea";
this.pictureBoxArea.Size = new System.Drawing.Size(100, 50);
this.pictureBoxArea.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBoxArea.TabIndex = 0;
this.pictureBoxArea.TabStop = false;
//
// CropForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.labelResolution);
this.Controls.Add(this.pictureBoxArea);
this.DoubleBuffered = true;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "CropForm";
this.Text = "ImageCropper";
this.VisibleChanged += new System.EventHandler(this.CropForm_VisibleChanged);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.CropForm_KeyDown);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.CropForm_MouseDown);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.CropForm_MouseMove);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.CropForm_MouseUp);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxArea)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBoxArea;
private System.Windows.Forms.Label labelResolution;
}
}