using System.Windows.Forms; namespace GitUI { partial class FormStatus { /// <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.Ok = new System.Windows.Forms.Button(); this.ProgressBar = new System.Windows.Forms.ProgressBar(); this.KeepDialogOpen = new System.Windows.Forms.CheckBox(); this.Abort = new System.Windows.Forms.Button(); this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); this.picBoxSuccessFail = new System.Windows.Forms.PictureBox(); this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); this.tableLayoutPanel1.SuspendLayout(); this.tableLayoutPanel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.picBoxSuccessFail)).BeginInit(); this.tableLayoutPanel3.SuspendLayout(); this.SuspendLayout(); // // Ok // this.Ok.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.Ok.Location = new System.Drawing.Point(461, 5); this.Ok.Name = "Ok"; this.Ok.Size = new System.Drawing.Size(75, 23); this.Ok.TabIndex = 0; this.Ok.Text = "OK"; this.Ok.UseCompatibleTextRendering = true; this.Ok.UseVisualStyleBackColor = true; this.Ok.Click += new System.EventHandler(this.Ok_Click); // // ProgressBar // this.ProgressBar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.ProgressBar.Location = new System.Drawing.Point(3, 4); this.ProgressBar.MarqueeAnimationSpeed = 1; this.ProgressBar.Name = "ProgressBar"; this.ProgressBar.Size = new System.Drawing.Size(245, 25); this.ProgressBar.Step = 50; this.ProgressBar.Style = System.Windows.Forms.ProgressBarStyle.Marquee; this.ProgressBar.TabIndex = 3; // // KeepDialogOpen // this.KeepDialogOpen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.KeepDialogOpen.AutoSize = true; this.KeepDialogOpen.Location = new System.Drawing.Point(254, 6); this.KeepDialogOpen.Name = "KeepDialogOpen"; this.KeepDialogOpen.Size = new System.Drawing.Size(120, 22); this.KeepDialogOpen.TabIndex = 3; this.KeepDialogOpen.Text = "Keep dialog open"; this.KeepDialogOpen.UseCompatibleTextRendering = true; this.KeepDialogOpen.UseVisualStyleBackColor = true; this.KeepDialogOpen.CheckedChanged += new System.EventHandler(this.KeepDialogOpen_CheckedChanged); // // Abort // this.Abort.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); this.Abort.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.Abort.Location = new System.Drawing.Point(380, 5); this.Abort.Name = "Abort"; this.Abort.Size = new System.Drawing.Size(82, 23); this.Abort.TabIndex = 3; this.Abort.Text = "Abort"; this.Abort.UseCompatibleTextRendering = true; this.Abort.UseVisualStyleBackColor = true; this.Abort.Click += new System.EventHandler(this.Abort_Click); // // tableLayoutPanel1 // this.tableLayoutPanel1.AutoSize = true; this.tableLayoutPanel1.ColumnCount = 1; this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 0, 0); this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1); this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel1.Location = new System.Drawing.Point(10, 10); this.tableLayoutPanel1.Name = "tableLayoutPanel1"; this.tableLayoutPanel1.RowCount = 1; this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanel1.Size = new System.Drawing.Size(545, 307); this.tableLayoutPanel1.TabIndex = 3; // // tableLayoutPanel2 // this.tableLayoutPanel2.ColumnCount = 4; this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel2.Controls.Add(this.Ok, 3, 0); this.tableLayoutPanel2.Controls.Add(this.Abort, 2, 0); this.tableLayoutPanel2.Controls.Add(this.KeepDialogOpen, 1, 0); this.tableLayoutPanel2.Controls.Add(this.ProgressBar, 0, 0); this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 270); this.tableLayoutPanel2.Name = "tableLayoutPanel2"; this.tableLayoutPanel2.RowCount = 1; this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel2.Size = new System.Drawing.Size(539, 34); this.tableLayoutPanel2.TabIndex = 0; // // picBoxSuccessFail // this.picBoxSuccessFail.Dock = System.Windows.Forms.DockStyle.Right; this.picBoxSuccessFail.Image = global::GitUI.Properties.Images.StatusBadgeWaiting; this.picBoxSuccessFail.Location = new System.Drawing.Point(3, 3); this.picBoxSuccessFail.Name = "picBoxSuccessFail"; this.picBoxSuccessFail.Size = new System.Drawing.Size(47, 50); this.picBoxSuccessFail.TabIndex = 1; this.picBoxSuccessFail.TabStop = false; // // tableLayoutPanel3 // this.tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.tableLayoutPanel3.ColumnCount = 2; this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanel3.Controls.Add(this.picBoxSuccessFail, 1, 0); this.tableLayoutPanel3.Controls.Add(this.ConsoleOutput, 0, 0); this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 3); this.tableLayoutPanel3.Name = "tableLayoutPanel3"; this.tableLayoutPanel3.RowCount = 1; this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); this.tableLayoutPanel3.Size = new System.Drawing.Size(539, 261); this.tableLayoutPanel3.TabIndex = 4; // // FormStatus // this.AcceptButton = this.Ok; this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; this.CancelButton = this.Abort; this.ClientSize = new System.Drawing.Size(565, 327); this.ControlBox = false; this.Controls.Add(this.tableLayoutPanel1); this.MinimumSize = new System.Drawing.Size(500, 200); this.Name = "FormStatus"; this.Padding = new System.Windows.Forms.Padding(10); this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Process"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormStatus_FormClosed); this.Load += new System.EventHandler(this.FormStatus_Load); this.tableLayoutPanel1.ResumeLayout(false); this.tableLayoutPanel2.ResumeLayout(false); this.tableLayoutPanel2.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.picBoxSuccessFail)).EndInit(); this.tableLayoutPanel3.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar ProgressBar; protected System.Windows.Forms.Button Ok; protected System.Windows.Forms.CheckBox KeepDialogOpen; protected System.Windows.Forms.Button Abort; private TableLayoutPanel tableLayoutPanel1; private TableLayoutPanel tableLayoutPanel2; private PictureBox picBoxSuccessFail; private TableLayoutPanel tableLayoutPanel3; } }