115 lines
5.5 KiB
C#
115 lines
5.5 KiB
C#
namespace Pulsar.Client.Helper.HVNC
|
|
{
|
|
partial class CloneProgressForm
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
private System.Windows.Forms.Label lblTitle;
|
|
private System.Windows.Forms.Label lblDetail;
|
|
private System.Windows.Forms.ProgressBar progressBar;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
|
|
/// <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
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.components = new System.ComponentModel.Container();
|
|
this.lblTitle = new System.Windows.Forms.Label();
|
|
this.lblDetail = new System.Windows.Forms.Label();
|
|
this.progressBar = new System.Windows.Forms.ProgressBar();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// lblTitle
|
|
//
|
|
this.lblTitle.AutoSize = false;
|
|
this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.lblTitle.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point);
|
|
this.lblTitle.Location = new System.Drawing.Point(10, 10);
|
|
this.lblTitle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.lblTitle.Name = "lblTitle";
|
|
this.lblTitle.Size = new System.Drawing.Size(280, 20);
|
|
this.lblTitle.TabIndex = 0;
|
|
this.lblTitle.Text = "Cloning browser profile...";
|
|
this.lblTitle.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// lblDetail
|
|
//
|
|
this.lblDetail.AutoEllipsis = true;
|
|
this.lblDetail.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.lblDetail.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.lblDetail.Location = new System.Drawing.Point(10, 30);
|
|
this.lblDetail.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
|
|
this.lblDetail.Name = "lblDetail";
|
|
this.lblDetail.Size = new System.Drawing.Size(280, 17);
|
|
this.lblDetail.TabIndex = 1;
|
|
this.lblDetail.Text = "Preparing...";
|
|
this.lblDetail.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// progressBar
|
|
//
|
|
this.progressBar.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.progressBar.Location = new System.Drawing.Point(10, 50);
|
|
this.progressBar.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.progressBar.Name = "progressBar";
|
|
this.progressBar.Size = new System.Drawing.Size(280, 15);
|
|
this.progressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
this.progressBar.TabIndex = 2;
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.btnCancel.Location = new System.Drawing.Point(215, 73);
|
|
this.btnCancel.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 3;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// CloneProgressForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.BackColor = System.Drawing.Color.FromArgb(32, 32, 32);
|
|
this.ClientSize = new System.Drawing.Size(300, 110);
|
|
this.Controls.Add(this.progressBar);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.lblDetail);
|
|
this.Controls.Add(this.lblTitle);
|
|
this.DoubleBuffered = true;
|
|
this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
|
this.ForeColor = System.Drawing.Color.Gainsboro;
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "CloneProgressForm";
|
|
this.Padding = new System.Windows.Forms.Padding(10);
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "Profile cloning";
|
|
this.TopMost = true;
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.CloneProgressForm_FormClosing);
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|