Mud Designer:

- Added web link to the launcher for the new Mud Designer Forums.
This commit is contained in:
Scionwest_cp 2010-01-03 14:23:54 -08:00
parent 4f5fd633ba
commit a8ea7eecb8
2 changed files with 49 additions and 0 deletions

View file

@ -155,5 +155,10 @@ namespace MudDesigner.Editors
string savePath = Path.Combine(Application.StartupPath, "Toolkit.xml");
FileManager.Save(savePath, Program.Settings);
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://muddesigner.dailyforum.net");
}
}
}

View file

@ -57,6 +57,9 @@
this.txtScript = new System.Windows.Forms.RichTextBox();
this.tabVariables = new System.Windows.Forms.TabPage();
this.Help = new System.Windows.Forms.ToolTip(this.components);
this.label1 = new System.Windows.Forms.Label();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.label2 = new System.Windows.Forms.Label();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
@ -84,6 +87,9 @@
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.label2);
this.splitContainer1.Panel1.Controls.Add(this.linkLabel1);
this.splitContainer1.Panel1.Controls.Add(this.label1);
this.splitContainer1.Panel1.Controls.Add(this.btnLogo);
//
// splitContainer1.Panel2
@ -407,6 +413,40 @@
this.Help.ReshowDelay = 100;
this.Help.ToolTipTitle = "Toolkit Help";
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Black;
this.label1.ForeColor = System.Drawing.Color.White;
this.label1.Location = new System.Drawing.Point(7, 131);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(157, 13);
this.label1.TabIndex = 1;
this.label1.Text = "Developers please visit the new";
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.BackColor = System.Drawing.Color.Black;
this.linkLabel1.Location = new System.Drawing.Point(160, 131);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(110, 13);
this.linkLabel1.TabIndex = 2;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "Mud Designer Forums";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// label2
//
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.Black;
this.label2.ForeColor = System.Drawing.Color.White;
this.label2.Location = new System.Drawing.Point(267, 131);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(227, 13);
this.label2.TabIndex = 3;
this.label2.Text = "to leave feedback and help build a community!";
//
// ToolkitLauncher
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@ -420,6 +460,7 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Mud Designer Toolkit";
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel1.PerformLayout();
this.splitContainer1.Panel2.ResumeLayout(false);
this.splitContainer1.ResumeLayout(false);
this.tabEditors.ResumeLayout(false);
@ -470,6 +511,9 @@
private System.Windows.Forms.CheckBox chkDefaultRealm;
private System.Windows.Forms.Label lblCurrentRealm;
private System.Windows.Forms.Button btnChangeRealm;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.LinkLabel linkLabel1;
}
}