namespace GitForce
{
partial class FormCustomToolArgs
{
/// <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.btCancel = new System.Windows.Forms.Button();
this.btOK = new System.Windows.Forms.Button();
this.btBrowse = new System.Windows.Forms.Button();
this.comboArgs = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.openFile = new System.Windows.Forms.OpenFileDialog();
this.SuspendLayout();
//
// btCancel
//
this.btCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btCancel.Location = new System.Drawing.Point(301, 50);
this.btCancel.Name = "btCancel";
this.btCancel.Size = new System.Drawing.Size(75, 23);
this.btCancel.TabIndex = 0;
this.btCancel.Text = "Cancel";
this.btCancel.UseVisualStyleBackColor = true;
//
// btOK
//
this.btOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btOK.Location = new System.Drawing.Point(220, 50);
this.btOK.Name = "btOK";
this.btOK.Size = new System.Drawing.Size(75, 23);
this.btOK.TabIndex = 1;
this.btOK.Text = "OK";
this.btOK.UseVisualStyleBackColor = true;
//
// btBrowse
//
this.btBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btBrowse.Location = new System.Drawing.Point(139, 50);
this.btBrowse.Name = "btBrowse";
this.btBrowse.Size = new System.Drawing.Size(75, 23);
this.btBrowse.TabIndex = 2;
this.btBrowse.Text = "Browse...";
this.btBrowse.UseVisualStyleBackColor = true;
this.btBrowse.Click += new System.EventHandler(this.BtBrowseClick);
//
// comboArgs
//
this.comboArgs.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.comboArgs.FormattingEnabled = true;
this.comboArgs.Location = new System.Drawing.Point(78, 12);
this.comboArgs.Name = "comboArgs";
this.comboArgs.Size = new System.Drawing.Size(298, 21);
this.comboArgs.TabIndex = 3;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 15);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(60, 13);
this.label1.TabIndex = 4;
this.label1.Text = "Arguments:";
//
// openFile
//
this.openFile.DefaultExt = "*.*";
this.openFile.Filter = "All files (*.*)|*.*";
this.openFile.Title = "Add Filename to Arguments";
//
// FormCustomToolArgs
//
this.AcceptButton = this.btOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btCancel;
this.ClientSize = new System.Drawing.Size(388, 85);
this.Controls.Add(this.label1);
this.Controls.Add(this.comboArgs);
this.Controls.Add(this.btBrowse);
this.Controls.Add(this.btOK);
this.Controls.Add(this.btCancel);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(286, 121);
this.Name = "FormCustomToolArgs";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "Custom Tool";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormCustomToolArgsFormClosing);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btCancel;
private System.Windows.Forms.Button btOK;
private System.Windows.Forms.Button btBrowse;
private System.Windows.Forms.ComboBox comboArgs;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.OpenFileDialog openFile;
}
}