|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace WinFormsControlsTest;
partial class PictureBoxes
{
/// <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.pictureBox1 = new System.Windows.Forms.PictureBox();
this.btnloadImage = new System.Windows.Forms.Button();
this.imageUri = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.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.pictureBox1.Location = new System.Drawing.Point(11, 39);
this.pictureBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(584, 281);
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
this.pictureBox1.LoadCompleted += this.pictureBox1_LoadCompleted;
this.pictureBox1.LoadProgressChanged += this.pictureBox1_LoadProgressChanged;
//
// btnloadImage
//
this.btnloadImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnloadImage.Location = new System.Drawing.Point(539, 9);
this.btnloadImage.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.btnloadImage.Name = "btnloadImage";
this.btnloadImage.Size = new System.Drawing.Size(56, 23);
this.btnloadImage.TabIndex = 1;
this.btnloadImage.Text = "Load";
this.btnloadImage.UseVisualStyleBackColor = true;
this.btnloadImage.Click += this.btnloadImage_Click;
//
// imageUri
//
this.imageUri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.imageUri.Location = new System.Drawing.Point(13, 11);
this.imageUri.MaxLength = 500;
this.imageUri.Name = "imageUri";
this.imageUri.Size = new System.Drawing.Size(521, 20);
this.imageUri.TabIndex = 0;
this.imageUri.Text = "https://initiate.alphacoders.com/download/wallpaper/685514/images5/jpg/2283681847" +
"13846/97229";
//
// PictureBoxes
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(606, 331);
this.Controls.Add(this.imageUri);
this.Controls.Add(this.btnloadImage);
this.Controls.Add(this.pictureBox1);
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "PictureBoxes";
this.Text = "Form1";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button btnloadImage;
private System.Windows.Forms.TextBox imageUri;
}
|