You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
6.1 KiB
141 lines
6.1 KiB
using System; |
|
using System.ComponentModel; |
|
using System.Windows.Forms; |
|
|
|
namespace ArdupilotMega.Controls |
|
{ |
|
partial class ProgressReporterDialogue |
|
{ |
|
|
|
/// <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.progressBar1 = new System.Windows.Forms.ProgressBar(); |
|
this.lblProgressMessage = new System.Windows.Forms.Label(); |
|
this.btnCancel = new System.Windows.Forms.Button(); |
|
this.imgWarning = new System.Windows.Forms.PictureBox(); |
|
this.linkLabel1 = new System.Windows.Forms.LinkLabel(); |
|
this.btnClose = new System.Windows.Forms.Button(); |
|
((System.ComponentModel.ISupportInitialize)(this.imgWarning)).BeginInit(); |
|
this.SuspendLayout(); |
|
// |
|
// progressBar1 |
|
// |
|
this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) |
|
| System.Windows.Forms.AnchorStyles.Right))); |
|
this.progressBar1.Location = new System.Drawing.Point(11, 90); |
|
this.progressBar1.Name = "progressBar1"; |
|
this.progressBar1.Size = new System.Drawing.Size(277, 13); |
|
this.progressBar1.TabIndex = 0; |
|
// |
|
// lblProgressMessage |
|
// |
|
this.lblProgressMessage.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.lblProgressMessage.Location = new System.Drawing.Point(13, 13); |
|
this.lblProgressMessage.Name = "lblProgressMessage"; |
|
this.lblProgressMessage.Size = new System.Drawing.Size(275, 74); |
|
this.lblProgressMessage.TabIndex = 1; |
|
this.lblProgressMessage.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
|
// |
|
// btnCancel |
|
// |
|
this.btnCancel.Location = new System.Drawing.Point(213, 109); |
|
this.btnCancel.Name = "btnCancel"; |
|
this.btnCancel.Size = new System.Drawing.Size(75, 23); |
|
this.btnCancel.TabIndex = 2; |
|
this.btnCancel.Text = "Cancel"; |
|
this.btnCancel.UseVisualStyleBackColor = true; |
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
|
// |
|
// imgWarning |
|
// |
|
this.imgWarning.Image = global::ArdupilotMega.Properties.Resources.iconWarning48; |
|
this.imgWarning.Location = new System.Drawing.Point(13, 22); |
|
this.imgWarning.Name = "imgWarning"; |
|
this.imgWarning.Size = new System.Drawing.Size(48, 48); |
|
this.imgWarning.TabIndex = 3; |
|
this.imgWarning.TabStop = false; |
|
this.imgWarning.Visible = false; |
|
// |
|
// linkLabel1 |
|
// |
|
this.linkLabel1.AutoSize = true; |
|
this.linkLabel1.Location = new System.Drawing.Point(240, 90); |
|
this.linkLabel1.Name = "linkLabel1"; |
|
this.linkLabel1.Size = new System.Drawing.Size(48, 13); |
|
this.linkLabel1.TabIndex = 4; |
|
this.linkLabel1.TabStop = true; |
|
this.linkLabel1.Text = "Details..."; |
|
this.linkLabel1.Visible = false; |
|
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); |
|
// |
|
// btn_Close |
|
// |
|
this.btnClose.Location = new System.Drawing.Point(213, 109); |
|
this.btnClose.Name = "btnClose"; |
|
this.btnClose.Size = new System.Drawing.Size(75, 23); |
|
this.btnClose.TabIndex = 5; |
|
this.btnClose.Text = "Close"; |
|
this.btnClose.UseVisualStyleBackColor = true; |
|
this.btnClose.Click += new System.EventHandler(this.btn_Close_Click); |
|
// |
|
// ProgressReporterDialogue |
|
// |
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
this.ClientSize = new System.Drawing.Size(306, 144); |
|
this.ControlBox = false; |
|
this.Controls.Add(this.btnClose); |
|
this.Controls.Add(this.linkLabel1); |
|
this.Controls.Add(this.imgWarning); |
|
this.Controls.Add(this.btnCancel); |
|
this.Controls.Add(this.lblProgressMessage); |
|
this.Controls.Add(this.progressBar1); |
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; |
|
this.MaximizeBox = false; |
|
this.MinimizeBox = false; |
|
this.Name = "ProgressReporterDialogue"; |
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; |
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; |
|
this.Text = "Progress"; |
|
((System.ComponentModel.ISupportInitialize)(this.imgWarning)).EndInit(); |
|
this.ResumeLayout(false); |
|
this.PerformLayout(); |
|
|
|
} |
|
|
|
#endregion |
|
|
|
private ProgressBar progressBar1; |
|
private System.Windows.Forms.Label lblProgressMessage; |
|
private Button btnCancel; |
|
private PictureBox imgWarning; |
|
private LinkLabel linkLabel1; |
|
private Button btnClose; |
|
} |
|
} |