Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 7.05 KB | None | 0 0
  1. namespace WindowsFormsApp1
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.picLeft = new System.Windows.Forms.PictureBox();
  32.             this.picRight = new System.Windows.Forms.PictureBox();
  33.             this.btnBlending = new System.Windows.Forms.Button();
  34.             this.trbBlendingFactor = new System.Windows.Forms.TrackBar();
  35.             this.prgBlendingProgress = new System.Windows.Forms.ProgressBar();
  36.             this.lblInProgress = new System.Windows.Forms.Label();
  37.             this.lblOpacity = new System.Windows.Forms.Label();
  38.             this.back_w = new System.ComponentModel.BackgroundWorker();
  39.             this.back_w2 = new System.ComponentModel.BackgroundWorker();
  40.             ((System.ComponentModel.ISupportInitialize)(this.picLeft)).BeginInit();
  41.             ((System.ComponentModel.ISupportInitialize)(this.picRight)).BeginInit();
  42.             ((System.ComponentModel.ISupportInitialize)(this.trbBlendingFactor)).BeginInit();
  43.             this.SuspendLayout();
  44.             //
  45.             // picLeft
  46.             //
  47.             this.picLeft.Image = global::WindowsFormsApp1.Properties.Resources.NoImage;
  48.             this.picLeft.Location = new System.Drawing.Point(13, 13);
  49.             this.picLeft.Name = "picLeft";
  50.             this.picLeft.Size = new System.Drawing.Size(198, 186);
  51.             this.picLeft.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  52.             this.picLeft.TabIndex = 0;
  53.             this.picLeft.TabStop = false;
  54.             //
  55.             // picRight
  56.             //
  57.             this.picRight.Image = global::WindowsFormsApp1.Properties.Resources.NoImage;
  58.             this.picRight.Location = new System.Drawing.Point(342, 12);
  59.             this.picRight.Name = "picRight";
  60.             this.picRight.Size = new System.Drawing.Size(198, 186);
  61.             this.picRight.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  62.             this.picRight.TabIndex = 1;
  63.             this.picRight.TabStop = false;
  64.             //
  65.             // btnBlending
  66.             //
  67.             this.btnBlending.Location = new System.Drawing.Point(206, 302);
  68.             this.btnBlending.Name = "btnBlending";
  69.             this.btnBlending.Size = new System.Drawing.Size(140, 23);
  70.             this.btnBlending.TabIndex = 2;
  71.             this.btnBlending.Text = "Perform Blending";
  72.             this.btnBlending.UseVisualStyleBackColor = true;
  73.             //
  74.             // trbBlendingFactor
  75.             //
  76.             this.trbBlendingFactor.Cursor = System.Windows.Forms.Cursors.IBeam;
  77.             this.trbBlendingFactor.Location = new System.Drawing.Point(206, 388);
  78.             this.trbBlendingFactor.Name = "trbBlendingFactor";
  79.             this.trbBlendingFactor.Size = new System.Drawing.Size(140, 45);
  80.             this.trbBlendingFactor.TabIndex = 3;
  81.             this.trbBlendingFactor.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
  82.             this.trbBlendingFactor.Value = 10;
  83.             this.trbBlendingFactor.ValueChanged += new System.EventHandler(this.trbBlendingFactor_ValueChanged);
  84.             //
  85.             // prgBlendingProgress
  86.             //
  87.             this.prgBlendingProgress.Location = new System.Drawing.Point(206, 331);
  88.             this.prgBlendingProgress.Name = "prgBlendingProgress";
  89.             this.prgBlendingProgress.Size = new System.Drawing.Size(140, 23);
  90.             this.prgBlendingProgress.Step = 1;
  91.             this.prgBlendingProgress.TabIndex = 4;
  92.             this.prgBlendingProgress.Visible = false;
  93.             //
  94.             // lblInProgress
  95.             //
  96.             this.lblInProgress.AutoSize = true;
  97.             this.lblInProgress.Location = new System.Drawing.Point(220, 266);
  98.             this.lblInProgress.Name = "lblInProgress";
  99.             this.lblInProgress.Size = new System.Drawing.Size(116, 13);
  100.             this.lblInProgress.TabIndex = 5;
  101.             this.lblInProgress.Text = "Operation in progress...";
  102.             this.lblInProgress.Visible = false;
  103.             //
  104.             // lblOpacity
  105.             //
  106.             this.lblOpacity.AutoSize = true;
  107.             this.lblOpacity.Location = new System.Drawing.Point(187, 400);
  108.             this.lblOpacity.Name = "lblOpacity";
  109.             this.lblOpacity.Size = new System.Drawing.Size(13, 13);
  110.             this.lblOpacity.TabIndex = 6;
  111.             this.lblOpacity.Text = "0";
  112.             //
  113.             // Form1
  114.             //
  115.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  116.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  117.             this.ClientSize = new System.Drawing.Size(552, 518);
  118.             this.Controls.Add(this.lblOpacity);
  119.             this.Controls.Add(this.lblInProgress);
  120.             this.Controls.Add(this.prgBlendingProgress);
  121.             this.Controls.Add(this.trbBlendingFactor);
  122.             this.Controls.Add(this.btnBlending);
  123.             this.Controls.Add(this.picRight);
  124.             this.Controls.Add(this.picLeft);
  125.             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  126.             this.Name = "Form1";
  127.             this.Text = "Form1";
  128.             this.Load += new System.EventHandler(this.Form1_Load);
  129.             this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Form1_KeyDown);
  130.             ((System.ComponentModel.ISupportInitialize)(this.picLeft)).EndInit();
  131.             ((System.ComponentModel.ISupportInitialize)(this.picRight)).EndInit();
  132.             ((System.ComponentModel.ISupportInitialize)(this.trbBlendingFactor)).EndInit();
  133.             this.ResumeLayout(false);
  134.             this.PerformLayout();
  135.  
  136.         }
  137.  
  138.         #endregion
  139.  
  140.         private System.Windows.Forms.PictureBox picLeft;
  141.         private System.Windows.Forms.PictureBox picRight;
  142.         private System.Windows.Forms.Button btnBlending;
  143.         private System.Windows.Forms.TrackBar trbBlendingFactor;
  144.         private System.Windows.Forms.ProgressBar prgBlendingProgress;
  145.         private System.Windows.Forms.Label lblInProgress;
  146.         private System.Windows.Forms.Label lblOpacity;
  147.         private System.ComponentModel.BackgroundWorker back_w;
  148.         private System.ComponentModel.BackgroundWorker back_w2;
  149.     }
  150. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement