CodeTV.AboutForm.AboutForm C# (CSharp) Method

AboutForm() public method

public AboutForm ( ) : System
return System
        public AboutForm()
        {
            InitializeComponent();

            using (StreamReader streamReader = new StreamReader(Assembly.GetExecutingAssembly().GetManifestResourceStream(MainForm.AssemblyName + ".ReadMe.txt")))
                this.richTextBox.Text = streamReader.ReadToEnd();

            this.richTextBox.LinkClicked += new LinkClickedEventHandler(richTextBox_LinkClicked);
        }