forked from andrewkirillov/AForge.NET
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathImageView.Designer.cs
152 lines (146 loc) · 7.24 KB
/
ImageView.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
namespace AForge.DebuggerVisualizers
{
partial class ImageView
{
/// <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( ImageView ) );
this.groupBox1 = new System.Windows.Forms.GroupBox( );
this.imagePanel = new System.Windows.Forms.Panel( );
this.pictureBox = new AForge.Controls.PictureBox( );
this.groupBox2 = new System.Windows.Forms.GroupBox( );
this.saveButton = new System.Windows.Forms.Button( );
this.clipboardButton = new System.Windows.Forms.Button( );
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog( );
this.groupBox1.SuspendLayout( );
this.imagePanel.SuspendLayout( );
( (System.ComponentModel.ISupportInitialize) ( this.pictureBox ) ).BeginInit( );
this.groupBox2.SuspendLayout( );
this.SuspendLayout( );
//
// groupBox1
//
this.groupBox1.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.groupBox1.Controls.Add( this.imagePanel );
this.groupBox1.Location = new System.Drawing.Point( 10, 75 );
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size( 362, 333 );
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Image";
//
// imagePanel
//
this.imagePanel.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.imagePanel.AutoScroll = true;
this.imagePanel.Controls.Add( this.pictureBox );
this.imagePanel.Location = new System.Drawing.Point( 10, 20 );
this.imagePanel.Name = "imagePanel";
this.imagePanel.Size = new System.Drawing.Size( 342, 302 );
this.imagePanel.TabIndex = 0;
//
// pictureBox
//
this.pictureBox.BackColor = System.Drawing.SystemColors.ControlDarkDark;
this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBox.Image = null;
this.pictureBox.Location = new System.Drawing.Point( 50, 51 );
this.pictureBox.Name = "pictureBox";
this.pictureBox.Size = new System.Drawing.Size( 243, 193 );
this.pictureBox.TabIndex = 0;
this.pictureBox.TabStop = false;
//
// groupBox2
//
this.groupBox2.Anchor = ( (System.Windows.Forms.AnchorStyles) ( ( ( System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left )
| System.Windows.Forms.AnchorStyles.Right ) ) );
this.groupBox2.Controls.Add( this.clipboardButton );
this.groupBox2.Controls.Add( this.saveButton );
this.groupBox2.Location = new System.Drawing.Point( 10, 10 );
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size( 362, 55 );
this.groupBox2.TabIndex = 1;
this.groupBox2.TabStop = false;
this.groupBox2.Text = "Options";
//
// saveButton
//
this.saveButton.Location = new System.Drawing.Point( 10, 20 );
this.saveButton.Name = "saveButton";
this.saveButton.Size = new System.Drawing.Size( 75, 23 );
this.saveButton.TabIndex = 0;
this.saveButton.Text = "&Save";
this.saveButton.UseVisualStyleBackColor = true;
this.saveButton.Click += new System.EventHandler( this.saveButton_Click );
//
// clipboardButton
//
this.clipboardButton.Location = new System.Drawing.Point( 100, 20 );
this.clipboardButton.Name = "clipboardButton";
this.clipboardButton.Size = new System.Drawing.Size( 100, 23 );
this.clipboardButton.TabIndex = 1;
this.clipboardButton.Text = "Put to &Clipboard";
this.clipboardButton.UseVisualStyleBackColor = true;
this.clipboardButton.Click += new System.EventHandler( this.clipboardButton_Click );
//
// saveFileDialog
//
this.saveFileDialog.Filter = "PNG files (*.png)|*.png|JPG files (*.jpg)|*.jpg|BMP files (*.bmp)|*.bmp";
this.saveFileDialog.Title = "Save image";
//
// ImageView
//
this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size( 384, 418 );
this.Controls.Add( this.groupBox2 );
this.Controls.Add( this.groupBox1 );
this.Icon = ( (System.Drawing.Icon) ( resources.GetObject( "$this.Icon" ) ) );
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size( 160, 120 );
this.Name = "ImageView";
this.ShowInTaskbar = false;
this.Text = "ImageView";
this.Load += new System.EventHandler( this.ImageView_Load );
this.Resize += new System.EventHandler( this.ImageView_Resize );
this.groupBox1.ResumeLayout( false );
this.imagePanel.ResumeLayout( false );
( (System.ComponentModel.ISupportInitialize) ( this.pictureBox ) ).EndInit( );
this.groupBox2.ResumeLayout( false );
this.ResumeLayout( false );
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Panel imagePanel;
private AForge.Controls.PictureBox pictureBox;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button clipboardButton;
private System.Windows.Forms.Button saveButton;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
}
}