Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1199 → Rev 1200

/TCPproxy/trunk/AboutForm.cs
10,14 → 10,14
public class AboutForm : Form
{
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.Label appLabel;
private System.Windows.Forms.Label copyrightLabel;
private System.Windows.Forms.Label license1Label;
private System.Windows.Forms.Button okButton;
private System.Windows.Forms.LinkLabel homePageLabel;
private System.Windows.Forms.Label versionLabel;
private System.Windows.Forms.Label license2Label;
private System.Windows.Forms.Label warrantyLabel;
private Label appLabel;
private Label copyrightLabel;
private Label license1Label;
private Button okButton;
private LinkLabel homePageLabel;
private Label versionLabel;
private Label license2Label;
private Label warrantyLabel;
 
#region Windows Form Designer generated code
 
27,14 → 27,14
/// </summary>
private void InitializeComponent()
{
this.appLabel = new System.Windows.Forms.Label();
this.copyrightLabel = new System.Windows.Forms.Label();
this.license1Label = new System.Windows.Forms.Label();
this.okButton = new System.Windows.Forms.Button();
this.homePageLabel = new System.Windows.Forms.LinkLabel();
this.versionLabel = new System.Windows.Forms.Label();
this.license2Label = new System.Windows.Forms.Label();
this.warrantyLabel = new System.Windows.Forms.Label();
this.appLabel = new Label();
this.copyrightLabel = new Label();
this.license1Label = new Label();
this.okButton = new Button();
this.homePageLabel = new LinkLabel();
this.versionLabel = new Label();
this.license2Label = new Label();
this.warrantyLabel = new Label();
this.SuspendLayout();
//
// appLabel
67,8 → 67,8
//
// 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.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
this.okButton.DialogResult = DialogResult.OK;
this.okButton.Location = new System.Drawing.Point(205, 217);
this.okButton.Name = "okButton";
this.okButton.Size = new System.Drawing.Size(75, 23);
84,7 → 84,7
this.homePageLabel.TabIndex = 4;
this.homePageLabel.TabStop = true;
this.homePageLabel.Text = "http://www.26th.net/public/projects/tcpproxy/";
this.homePageLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.homePageLabel_LinkClicked);
this.homePageLabel.LinkClicked += new LinkLabelLinkClickedEventHandler(this.homePageLabel_LinkClicked);
//
// versionLabel
//
126,12 → 126,12
this.Controls.Add(this.license1Label);
this.Controls.Add(this.copyrightLabel);
this.Controls.Add(this.appLabel);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.FormBorderStyle = FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AboutForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.StartPosition = FormStartPosition.CenterParent;
this.Text = "About TCPproxy";
this.ResumeLayout(false);
this.PerformLayout();