namespace CopyFromScreenSample {
partial class MainForm {
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
protected override void Dispose(bool disposing) {
if( disposing && (components != null) ) {
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent() {
this.captureButton = new System.Windows.Forms.Button();
this.screenPictureBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.screenPictureBox)).BeginInit();
this.SuspendLayout();
//
// captureButton
//
this.captureButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.captureButton.Location = new System.Drawing.Point(549, 355);
this.captureButton.Name = "captureButton";
this.captureButton.Size = new System.Drawing.Size(75, 23);
this.captureButton.TabIndex = 0;
this.captureButton.Text = "Capture";
this.captureButton.Click += new System.EventHandler(this.captureButton_Click);
//
// screenPictureBox
//
this.screenPictureBox.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.screenPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.screenPictureBox.Location = new System.Drawing.Point(13, 13);
this.screenPictureBox.Name = "screenPictureBox";
this.screenPictureBox.Size = new System.Drawing.Size(611, 335);
this.screenPictureBox.TabIndex = 1;
this.screenPictureBox.TabStop = false;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(636, 390);
this.Controls.Add(this.screenPictureBox);
this.Controls.Add(this.captureButton);
this.KeyPreview = true;
this.Name = "MainForm";
this.Text = "Copy From Screen Sample";
((System.ComponentModel.ISupportInitialize)(this.screenPictureBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button captureButton;
private System.Windows.Forms.PictureBox screenPictureBox;
}
}