using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.IO; using System.Reflection; namespace DirectToDesktop { public partial class FrmAbout : Form { public FrmAbout() { InitializeComponent(); using (Stream helpStream = Assembly.GetExecutingAssembly().GetManifestResourceStream("DirectToDesktop.Resources.help.rtf")) { helpText.LoadFile(helpStream, RichTextBoxStreamType.RichText); } } private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { Process.Start(linkLabel1.Tag.ToString()); } private void btnOK_Click(object sender, EventArgs e) { Close(); } } }