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.
109 lines
4.4 KiB
109 lines
4.4 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt) |
|
|
|
namespace ICSharpCode.SharpDevelop.Gui |
|
{ |
|
partial class ToolNotFoundDialog |
|
{ |
|
/// <summary> |
|
/// Designer variable used to keep track of non-visual components. |
|
/// </summary> |
|
private System.ComponentModel.IContainer components = null; |
|
|
|
/// <summary> |
|
/// Disposes resources used by the form. |
|
/// </summary> |
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|
protected override void Dispose(bool disposing) |
|
{ |
|
if (disposing) { |
|
if (components != null) { |
|
components.Dispose(); |
|
} |
|
} |
|
base.Dispose(disposing); |
|
} |
|
|
|
/// <summary> |
|
/// This method is required for Windows Forms designer support. |
|
/// Do not change the method contents inside the source code editor. The Forms designer might |
|
/// not be able to load this method if it was changed manually. |
|
/// </summary> |
|
private void InitializeComponent() |
|
{ |
|
this.pictureBox = new System.Windows.Forms.PictureBox(); |
|
this.descriptionLabel = new System.Windows.Forms.Label(); |
|
this.linkLabel = new System.Windows.Forms.LinkLabel(); |
|
this.okButton = new System.Windows.Forms.Button(); |
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit(); |
|
this.SuspendLayout(); |
|
// |
|
// pictureBox |
|
// |
|
this.pictureBox.Location = new System.Drawing.Point(12, 12); |
|
this.pictureBox.Name = "pictureBox"; |
|
this.pictureBox.Size = new System.Drawing.Size(32, 32); |
|
this.pictureBox.TabIndex = 0; |
|
this.pictureBox.TabStop = false; |
|
// |
|
// descriptionLabel |
|
// |
|
this.descriptionLabel.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.descriptionLabel.Location = new System.Drawing.Point(50, 9); |
|
this.descriptionLabel.Name = "descriptionLabel"; |
|
this.descriptionLabel.Size = new System.Drawing.Size(282, 91); |
|
this.descriptionLabel.TabIndex = 1; |
|
this.descriptionLabel.Text = "description"; |
|
// |
|
// linkLabel |
|
// |
|
this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) |
|
| System.Windows.Forms.AnchorStyles.Right))); |
|
this.linkLabel.Location = new System.Drawing.Point(12, 102); |
|
this.linkLabel.Name = "linkLabel"; |
|
this.linkLabel.Size = new System.Drawing.Size(239, 23); |
|
this.linkLabel.TabIndex = 2; |
|
this.linkLabel.TabStop = true; |
|
this.linkLabel.Text = "URL"; |
|
this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabelLinkClicked); |
|
// |
|
// okButton |
|
// |
|
this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
|
this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK; |
|
this.okButton.Location = new System.Drawing.Point(257, 102); |
|
this.okButton.Name = "okButton"; |
|
this.okButton.Size = new System.Drawing.Size(75, 23); |
|
this.okButton.TabIndex = 0; |
|
this.okButton.Text = "OK"; |
|
this.okButton.UseVisualStyleBackColor = true; |
|
// |
|
// ToolNotFoundDialog |
|
// |
|
this.AcceptButton = this.okButton; |
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
|
this.ClientSize = new System.Drawing.Size(344, 134); |
|
this.Controls.Add(this.okButton); |
|
this.Controls.Add(this.linkLabel); |
|
this.Controls.Add(this.descriptionLabel); |
|
this.Controls.Add(this.pictureBox); |
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; |
|
this.MaximizeBox = false; |
|
this.MinimizeBox = false; |
|
this.MinimumSize = new System.Drawing.Size(360, 140); |
|
this.Name = "ToolNotFoundDialog"; |
|
this.ShowInTaskbar = false; |
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; |
|
this.Text = "ToolNotFoundDialog"; |
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit(); |
|
this.ResumeLayout(false); |
|
} |
|
private System.Windows.Forms.LinkLabel linkLabel; |
|
private System.Windows.Forms.Button okButton; |
|
private System.Windows.Forms.Label descriptionLabel; |
|
private System.Windows.Forms.PictureBox pictureBox; |
|
} |
|
}
|
|
|